Package org.rascalmpl.library.experiments.Compiler.RVM.Interpreter.Instructions

Examples of org.rascalmpl.library.experiments.Compiler.RVM.Interpreter.Instructions.LoadLoc1


  }
 
  public CodeBlock LOADLOC (int pos){
    switch(pos){
    case 0: return add(new LoadLoc0(this));
    case 1: return add(new LoadLoc1(this));
    case 2: return add(new LoadLoc2(this));
    case 3: return add(new LoadLoc3(this));
    case 4: return add(new LoadLoc4(this));
    case 5: return add(new LoadLoc5(this));
    case 6: return add(new LoadLoc6(this));
View Full Code Here

TOP

Related Classes of org.rascalmpl.library.experiments.Compiler.RVM.Interpreter.Instructions.LoadLoc1

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.