Examples of ThunkMap


Examples of org.renjin.compiler.ThunkMap

  }

  private SEXP compileAndEval(String code)
      throws InstantiationException, IllegalAccessException {
    ExpressionVector exp = RParser.parseSource(code);
    ThunkMap thunkMap = new ThunkMap("r/anon/Thunk");
    Class<CompiledBody> compiled = ExpressionCompiler.compile(thunkMap, exp);
   
    return compiled.newInstance().eval(topLevelContext, topLevelContext.getEnvironment());
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.