Package weasel.interpreter.bytecode

Examples of weasel.interpreter.bytecode.WeaselInstructionLine


  }
 
 
  public void add(int line, WeaselInstruction instruction){
    if(line!=this.line){
      instructions.add(new WeaselInstructionLine(line));
      this.line = line;
    }
    instructions.add(instruction);
  }
View Full Code Here


        instructions.add(1, instruction);
        return;
      }
    }
    instructions.add(0, instruction);
    instructions.add(0, new WeaselInstructionLine(line));
  }
View Full Code Here

TOP

Related Classes of weasel.interpreter.bytecode.WeaselInstructionLine

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.