Examples of ESmall


Examples of erjang.ESmall

        // | firstline | multiline | no_auto_capture | dupnames |
        // ungreedy
        // | {newline, NLSpec}| bsr_anycrlf | bsr_unicode

        ETuple tup;
        ESmall off;
        if (opt == am_unicode) {
          unicode = true;
        } else if (opt == am_anchored) {
          anchored = true;
        } else if (opt == am_global) {
View Full Code Here

Examples of erjang.ESmall

    public I(BeamOpcode opcode, int i1) {
      super(opcode);
      this.i1 = i1;
    }
    public ETuple toSymbolic() {
      return ETuple.make(opcode.symbol, new ESmall(i1));
    }
View Full Code Here

Examples of erjang.ESmall

      this.anon_fun = anon_fun;
    }
    public ETuple toSymbolic() {
      return ETuple.make(opcode.symbol,
                 anon_fun.toSymbolic(),
                 new ESmall(anon_fun_no),
                 new ESmall(anon_fun.old_uniq),
                 new ESmall(anon_fun.free_vars));
    }
View Full Code Here

Examples of erjang.ESmall

      this.bin = bin;
    }

    public ETuple toSymbolic() {
      return ETuple.make(opcode.symbol,
                 new ESmall(bin.byteLength()),
                 bin.toSymbolic());
    }
View Full Code Here

Examples of erjang.ESmall

    }
    public ETuple toSymbolic() {
      if (is_saverestore)
        return ETuple.make(opcode.symbol,
                   dest.toSymbolic(),
                   (i2==-1 ? START_REPR : new ESmall(i2)));
      else
        return ETuple.make(opcode.symbol,
                   dest.toSymbolic(),
                   new ESmall(i2));
    }
View Full Code Here

Examples of erjang.ESmall

      super(opcode, i1);
      this.i2 = i2;
    }
    public ETuple toSymbolic() {
      return ETuple.make(opcode.symbol,
                 new ESmall(i1),
                 new ESmall(i2));
    }
View Full Code Here

Examples of erjang.ESmall

    }

    public ETuple toSymbolic() {
      if (is_call)
        return ETuple.make(opcode.symbol,
                   new ESmall(i1),
                   functionAtLabel.toSymbolic());
      else
        return ETuple.make(opcode.symbol,
                   new ESmall(i1),
                   label.toSymbolic());
    }
View Full Code Here

Examples of erjang.ESmall

    public ETuple toSymbolic() {
      return ETuple.make(opcode.symbol,
                 a1.toSymbolic(),
                 a2.toSymbolic(),
                 new ESmall(i3));
    }
View Full Code Here

Examples of erjang.ESmall

      super(opcode, i1);
      this.ext_fun = ext_fun;
    }
    public ETuple toSymbolic() {
      return ETuple.make(opcode.symbol,
                 new ESmall(i1),
                 ext_fun.toSymbolic());
    }
View Full Code Here

Examples of erjang.ESmall

      this.i1 = i1;
      this.dest = dest;
    }
    public ETuple toSymbolic() {
      return ETuple.make(opcode.symbol,
                 new ESmall(i1),
                 dest.toSymbolic());
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.