Package lupos.rif.visitor

Examples of lupos.rif.visitor.ReplaceVarsVisitor


  public Object evaluate(Bindings binding, Object optionalResult) {
    return evaluate(binding, optionalResult, null);
  }

  public Object evaluate(Bindings binding, Object result, Multimap<IExpression, IExpression> equalities) {
    ReplaceVarsVisitor replace = new ReplaceVarsVisitor();
    replace.bindings = binding;
    return accept(replace, null);
  }
View Full Code Here

TOP

Related Classes of lupos.rif.visitor.ReplaceVarsVisitor

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.