Package pspdash.data.compiler

Examples of pspdash.data.compiler.ExpressionContext


    public SimpleData evaluate(CompiledScript script, String prefix)
      throws ExecutionException
    {
      ListStack stack = new ListStack();
      ExpressionContext context = new SimpleExpressionContext(prefix);
      script.run(stack, context);
      SimpleData value = (SimpleData) stack.pop();
      if (value != null)
        value = (SimpleData) value.getEditable(false);
      return value;
View Full Code Here

TOP

Related Classes of pspdash.data.compiler.ExpressionContext

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.