throws ValueExprEvaluationException, StoreException
{
Function function = FunctionRegistry.getInstance().get(node.getURI());
if (function == null) {
throw new EvaluationException("Unknown function '" + node.getURI() + "'");
}
List<? extends ValueExpr> args = node.getArgs();
Value[] argValues = new Value[args.size()];