Package lupos.rif.builtin

Examples of lupos.rif.builtin.Argument


    // doBind = true;
    if (cachedResult == null) {
      final List<Item> params = new ArrayList<Item>();
      for (IExpression expr : termParams)
        params.add((Item) expr.evaluate(binding, null, equalities));
      final Argument arg = RIFBuiltinFactory.createArgument(binding,
          (Literal) optionalResult, params.toArray(new Item[] {}));
      if (getVariables().isEmpty())
        return (cachedResult = RIFBuiltinFactory.callBuiltin(name, arg));
      else
        return RIFBuiltinFactory.callBuiltin(name, arg);
View Full Code Here

TOP

Related Classes of lupos.rif.builtin.Argument

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.