Package weasel.interpreter.bytecode

Examples of weasel.interpreter.bytecode.WeaselInstructionLessEqual


      }else if(oper==WeaselOperator.LESS){
        instructions.add(operator.line, new WeaselInstructionLess(primitiveID));
      }else if(oper==WeaselOperator.GREATER){
        instructions.add(operator.line, new WeaselInstructionGreater(primitiveID));
      }else if(oper==WeaselOperator.LESS_EQUAL){
        instructions.add(operator.line, new WeaselInstructionLessEqual(primitiveID));
      }else if(oper==WeaselOperator.GREATER_EQUAL){
        instructions.add(operator.line, new WeaselInstructionGreaterEqual(primitiveID));
      }else if(oper==WeaselOperator.PLUS){
        instructions.add(operator.line, new WeaselInstructionAdd(primitiveID));
      }else if(oper==WeaselOperator.MINUS){
View Full Code Here

TOP

Related Classes of weasel.interpreter.bytecode.WeaselInstructionLessEqual

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.