Package weasel.interpreter.bytecode

Examples of weasel.interpreter.bytecode.WeaselInstructionMul


      }else if(oper==WeaselOperator.PLUS){
        instructions.add(operator.line, new WeaselInstructionAdd(primitiveID));
      }else if(oper==WeaselOperator.MINUS){
        instructions.add(operator.line, new WeaselInstructionSub(primitiveID));
      }else if(oper==WeaselOperator.TIMES){
        instructions.add(operator.line, new WeaselInstructionMul(primitiveID));
      }else if(oper==WeaselOperator.DIVIDE){
        instructions.add(operator.line, new WeaselInstructionDiv(primitiveID));
      }else if(oper==WeaselOperator.REMAINDER){
        instructions.add(operator.line, new WeaselInstructionMod(primitiveID));
      }
View Full Code Here

TOP

Related Classes of weasel.interpreter.bytecode.WeaselInstructionMul

Copyright © 2018 www.massapicom. 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.