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

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


  public CodeBlock CALLCONSTR(String name, int arity/*, ISourceLocation src*/) {
    return add(new CallConstr(this, name, arity/*, src*/));
  }
 
  public CodeBlock LOADNESTEDFUN(String fuid, String scopeIn) {
    return add(new LoadNestedFun(this, fuid, scopeIn));
  }
View Full Code Here

TOP

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

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.