| net.sf.saxon.instruct.TailCallReturner
All known Subclasses: net.sf.saxon.expr.LetExpression, net.sf.saxon.instruct.Instruction, net.sf.saxon.expr.IfExpression,
TailCallReturner | public interface TailCallReturner (Code) | | 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(Code) | | 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. null if the instruction has completed execution; or a TailCall indicatinga function call or template call that is delegated to the caller, to be made after the stack hasbeen unwound so as to save stack space. |
|
|