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

Examples of org.renjin.compiler.ir.tac.functions.FunctionCallTranslator.addStatement()


 
  public void translateStatements(TranslationContext context, SEXP sexp) {
    if( isReservedFunction(sexp) ) {
      FunctionCallTranslator translator = builders.get( ((FunctionCall)sexp).getFunction() );
      if(translator != null) {
        translator.addStatement(this, context, (FunctionCall)sexp);
        return;
      }
    }
    Expression expr = translateExpression(context, sexp);
    if(!(expr instanceof Constant)) {
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.