Package org.renjin.sexp

Examples of org.renjin.sexp.Environment


    } else if(warnMode == 0) {
      // store warnings until end of evaluation
     
      ListVector.NamedBuilder lastWarning = new ListVector.NamedBuilder();
    
      Environment baseEnv = context.getEnvironment().getBaseEnvironment();
      if(baseEnv.hasVariable(LAST_WARNING)) {
        lastWarning.addAll((ListVector)baseEnv.getVariable(LAST_WARNING).force(context));
      }
     
      lastWarning.add(message, call);
      baseEnv.setVariable(LAST_WARNING, lastWarning.build());
    }
  }
View Full Code Here

TOP

Related Classes of org.renjin.sexp.Environment

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.