Package org.luaj.vm2

Examples of org.luaj.vm2.LuaValue.neg()


      break;
    case OP_POW:
      r = v1.pow(v2);
      break;
    case OP_UNM:
      r = v1.neg();
      break;
    case OP_LEN:
      // r = v1.len();
      // break;
      return false; /* no constant folding for 'len' */
 
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.