Package org.luaj.vm2

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


    switch (op) {
    case OP_ADD:
      r = v1.add(v2);
      break;
    case OP_SUB:
      r = v1.sub(v2);
      break;
    case OP_MUL:
      r = v1.mul(v2);
      break;
    case OP_DIV:
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.