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

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


  public CodeBlock OCALLDYN(Type types, int arity, ISourceLocation src) {
    return add(new OCallDyn(this, getTypeConstantIndex(types), arity, src));
  }
 
  public CodeBlock CALLJAVA(String methodName, String className, Type parameterTypes, Type keywordTypes, int reflect){
    return add(new CallJava(this, getConstantIndex(vf.string(methodName)),
                    getConstantIndex(vf.string(className)),
                      getTypeConstantIndex(parameterTypes),
                      getTypeConstantIndex(keywordTypes),
                      reflect));
  }
View Full Code Here

TOP

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

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.