use of org.eclipse.wst.xml.xpath2.processor.internal.ast.MinusExpr in project webtools.sourceediting by eclipse.
the class DefaultEvaluator method visit.
/**
* visit minus expression
*
* @param e
* is the minus expression.
* @return a new function
*/
public Object visit(MinusExpr e) {
ResultSequence rs = (ResultSequence) e.arg().accept(this);
Collection args = new ArrayList();
args.add(rs);
try {
return FsMinus.fs_minus_unary(args);
} catch (DynamicError err) {
report_error(err);
// unreach
return null;
}
}
Aggregations