Package org.renjin.compiler.ir.tac.functions

Examples of org.renjin.compiler.ir.tac.functions.TranslationContext


  public IRBody build(SEXP exp) {
   
    statements = Lists.newArrayList();
    labels = Maps.newHashMap();
   
    TranslationContext context = new TopLevelContext();
    Expression returnValue = translateExpression(context, exp);
   
    addStatement(new ReturnStatement(returnValue));
  
    removeRedundantJumps();
View Full Code Here

TOP

Related Classes of org.renjin.compiler.ir.tac.functions.TranslationContext

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.