public class LetExpression extends Assignation implements TailCallReturner
| Modifier and Type | Field and Description |
|---|---|
(package private) int |
evaluationMode |
(package private) int |
refCount |
action, declaration, nameCode, sequence, slotNumber, variableNamelocationId, staticPropertiesEVALUATE_METHOD, ITERATE_METHOD, PROCESS_METHOD| Constructor and Description |
|---|
LetExpression() |
| Modifier and Type | Method and Description |
|---|---|
void |
checkPermittedContents(SchemaType parentType,
StaticContext env,
boolean whole)
Check that any elements and attributes constructed or returned by this expression are acceptable
in the content model of a given complex type.
|
int |
computeCardinality()
Determine the static cardinality of the expression
|
int |
computeSpecialProperties()
Get the static properties of this expression (other than its type).
|
void |
display(int level,
java.io.PrintStream out,
Configuration config)
Diagnostic print of expression structure
|
protected ValueRepresentation |
eval(XPathContext context)
Evaluate the variable.
|
Item |
evaluateItem(XPathContext context)
Evaluate the expression as a singleton
|
ItemType |
getItemType(TypeHierarchy th)
Determine the data type of the items returned by the expression, if possible
|
SequenceIterator |
iterate(XPathContext context)
Iterate over the sequence of values
|
boolean |
markTailFunctionCalls(int nameCode,
int arity)
Mark tail function calls
|
Expression |
optimize(Optimizer opt,
StaticContext env,
ItemType contextItemType)
Perform optimisation of an expression and its subexpressions.
|
void |
process(XPathContext context)
Process this expression as an instruction, writing results to the current
outputter
|
TailCall |
processLeavingTail(XPathContext context)
ProcessLeavingTail: called to do the real work of this instruction.
|
Expression |
promote(PromotionOffer offer)
Promote this expression if possible
|
void |
setIndexedVariable() |
Expression |
typeCheck(StaticContext env,
ItemType contextItemType)
Type-check the expression
|
evaluateVariable, extendBindingList, getAction, getLocalSlotNumber, getRequiredSlots, getSequence, getVariableDeclaration, getVariableFingerprint, getVariableName, getVariableNameCode, isAssignable, isGlobal, iterateSubExpressions, promoteWhereClause, replaceSubExpression, setAction, setSequence, setSlotNumber, setVariableDeclaration, simplify, suppressValidationadoptChildExpression, computeDependencies, computeStaticProperties, doPromotion, dynamicError, effectiveBooleanValue, evaluateAsString, getCardinality, getColumnNumber, getConstructType, getDependencies, getExecutable, getHostLanguage, getImplementationMethod, getInstructionInfo, getIntrinsicDependencies, getLineNumber, getLocationId, getLocationProvider, getParentExpression, getPublicId, getSlotsUsed, getSpecialProperties, getSystemId, hasBadParentPointer, resetStaticProperties, setLocationId, setParentExpression, setParentExpression, typeErrorpublic void setIndexedVariable()
public Expression typeCheck(StaticContext env, ItemType contextItemType) throws XPathException
typeCheck in interface Expressionenv - the static context of the expressioncontextItemType - the static type of "." at the point where this expression is invoked.
The parameter is set to null if it is known statically that the context item will be undefined.
If the type of the context item is not known statically, the argument is set to
Type.ITEM_TYPEStaticError - if an error is discovered during this phase
(typically a type error)XPathExceptionpublic Expression optimize(Optimizer opt, StaticContext env, ItemType contextItemType) throws XPathException
This method is called after all references to functions and variables have been resolved to the declaration of the function or variable, and after all type checking has been done.
optimize in interface Expressionopt - the optimizer in use. This provides access to supporting functions; it also allows
different optimization strategies to be used in different circumstances.env - the static context of the expressioncontextItemType - the static type of "." at the point where this expression is invoked.
The parameter is set to null if it is known statically that the context item will be undefined.
If the type of the context item is not known statically, the argument is set to
Type.ITEM_TYPEStaticError - if an error is discovered during this phase
(typically a type error)XPathExceptionpublic void checkPermittedContents(SchemaType parentType, StaticContext env, boolean whole) throws XPathException
checkPermittedContents in interface ExpressioncheckPermittedContents in class ComputedExpressionparentType - The schema typeenv - the static contextwhole - true if this expression is expected to make the whole content of the type, false
if it is expected to make up only a partXPathException - if the expression doesn't match the required content typepublic SequenceIterator iterate(XPathContext context) throws XPathException
iterate in interface Expressioniterate in class ComputedExpressioncontext - supplies the context for evaluationXPathException - if any dynamic error occurs evaluating the
expressionprotected ValueRepresentation eval(XPathContext context) throws XPathException
XPathExceptionpublic Item evaluateItem(XPathContext context) throws XPathException
evaluateItem in interface ExpressionevaluateItem in class ComputedExpressioncontext - The context in which the expression is to be evaluatedXPathException - if any dynamic error occurs evaluating the
expressionpublic void process(XPathContext context) throws XPathException
process in interface Expressionprocess in class ComputedExpressioncontext - The dynamic context, giving access to the current node,
the current variables, etc.XPathExceptionpublic ItemType getItemType(TypeHierarchy th)
getItemType in interface Expressionth - public int computeCardinality()
computeCardinality in class ComputedExpressionpublic int computeSpecialProperties()
computeSpecialProperties in class ComputedExpressionpublic boolean markTailFunctionCalls(int nameCode,
int arity)
markTailFunctionCalls in class ComputedExpressionpublic Expression promote(PromotionOffer offer) throws XPathException
promote in interface Expressionpromote in class Assignationoffer - details of the offer, for example the offer to move
expressions that don't depend on the context to an outer level in
the containing expressionXPathException - if any error is detectedpublic TailCall processLeavingTail(XPathContext context) throws XPathException
processLeavingTail in interface TailCallReturnercontext - The dynamic context of the transformation, giving access to the current node,
the current variables, etc.XPathExceptionpublic void display(int level,
java.io.PrintStream out,
Configuration config)
display in interface Expressionlevel - indentation level for this expressionout - Output destination