net.sf.saxon.instruct
Interface TailCallReturner
- All Known Implementing Classes:
- IfExpression, Instruction, LetExpression
- public interface TailCallReturner
This interface represents an expression that is capable of being processed leaving tail calls for the
calling instruction to deal with.
processLeavingTail
public TailCall processLeavingTail(XPathContext context)
throws XPathException
- ProcessLeavingTail: called to do the real work of this instruction. This method
must be implemented in each subclass. The results of the instruction are written
to the current Receiver, which can be obtained via the Controller.
- Parameters:
context
- The dynamic context of the transformation, giving access to the current node,
the current variables, etc.
- Returns:
- null if the instruction has completed execution; or a TailCall indicating
a function call or template call that is delegated to the caller, to be made after the stack has
been unwound so as to save stack space.
- Throws:
XPathException