// javadoc inherited
protected void registerExpressionFunctions(ExpressionContext context) {
//add a new function capable of returning an empty sequence.
context.registerFunction(
new ImmutableExpandedName("", "empty-sequence"),
new Function() {
public Value invoke(ExpressionContext context, Value[] args) {
return Sequence.EMPTY;
}
});