Examples of expdesc


Examples of org.luaj.vm2.compiler.LexState.expdesc

    e1.u.s.info = this.condjump(op, cond, o1, o2);
    e1.k = LexState.VJMP;
  }

  void prefix(int /* UnOpr */op, expdesc e) {
    expdesc e2 = new expdesc();
    e2.init(LexState.VKNUM, 0);
    switch (op) {
    case LexState.OPR_MINUS: {
      if (e.k == LexState.VK)
        this.exp2anyreg(e); /* cannot operate on non-numeric constants */
      this.codearith(OP_UNM, e, e2);
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.