Package com.saxonica.xsltextn.instruct
Class DoInstr
java.lang.Object
net.sf.saxon.expr.Expression
net.sf.saxon.expr.instruct.Instruction
com.saxonica.xsltextn.instruct.DoInstr
- All Implemented Interfaces:
 ExportAgent,Locatable,IdentityComparable,Traceable
Compiled instruction deriving from saxon:do element in stylesheet.
 
The instruction evaluates the action expression and discards the result.
- 
Nested Class Summary
Nested Classes - 
Field Summary
Fields inherited from class net.sf.saxon.expr.Expression
EFFECTIVE_BOOLEAN_VALUE, EVALUATE_METHOD, ITEM_FEED_METHOD, ITERATE_METHOD, MAX_COST, MAX_SEQUENCE_LENGTH, MAX_STRING_LENGTH, PROCESS_METHOD, staticProperties, UNBOUNDED_LOWER, UNBOUNDED_UPPER, UPDATE_METHOD, WATCH_METHOD - 
Constructor Summary
Constructors - 
Method Summary
Modifier and TypeMethodDescriptioncopy(RebindingMap rebindings) Copy an expression.voidDiagnostic print of expression structure.Make an elaborator for this expressionintGet the name of this instruction for diagnostic and tracing purposesintDetermine the intrinsic dependencies of an expression, that is, those which are not derived from the dependencies of its subexpressions.operands()Get the immediate sub-expressions of this expression, with information about the relationship of each expression to its parent expression.Methods inherited from class net.sf.saxon.expr.instruct.Instruction
alwaysCreatesNewNodes, assembleParams, assembleTunnelParams, computeCardinality, computeSpecialProperties, dynamicError, evaluateAsString, evaluateItem, getExpressionName, getImplementationMethod, getItemType, getNetCost, getSourceLocator, isInstruction, isXSLT, iterate, mayCreateNewNodes, process, someOperandCreatesNewNodesMethods inherited from class net.sf.saxon.expr.Expression
addToPathMap, adoptChildExpression, allowExtractingCommonSubexpressions, checkedOperands, checkForUpdatingSubexpressions, checkPermittedContents, computeDependencies, computeHashCode, computeStaticProperties, dispatchTailCall, dynamicError, effectiveBooleanValue, equals, explain, getCardinality, getConfiguration, getCost, getDependencies, getEvaluationMethod, getExtraProperty, getIntegerBounds, getLocalRetainedStaticContext, getLocation, getObjectName, getPackageData, getParentExpression, getProperties, getProperty, getRetainedStaticContext, getScopingExpression, getSlotsUsed, getSpecialProperties, getStaticBaseURI, getStaticBaseURIString, getStaticType, getStaticUType, getStreamerName, getTracingTag, hasCompatibleStaticContext, hashCode, hasSpecialProperty, hasVariableBinding, identityHashCode, implementsStaticTypeCheck, isCallOn, isEqual, isIdentical, isLiftable, isMultiThreaded, isStaticPropertiesKnown, isSubtreeExpression, isUpdatingExpression, isVacuousExpression, makeElaborator, markTailFunctionCalls, operandList, operandSparseList, optimize, optimizeChildren, prepareForStreaming, resetLocalStaticProperties, restoreParentPointers, setEvaluationMethod, setExtraProperty, setFiltered, setFlattened, setLocation, setParentExpression, setRetainedStaticContext, setRetainedStaticContextLocally, setRetainedStaticContextThoroughly, setStaticProperty, simplify, simplifyChildren, staticTypeCheck, supportsLazyEvaluation, suppressValidation, toPattern, toShortString, toString, typeCheck, typeCheckChildren, typeError, unordered, verifyParentPointers, withLocationMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.sf.saxon.trace.Traceable
gatherProperties 
- 
Constructor Details
- 
DoInstr
 
 - 
 - 
Method Details
- 
getActionExpr
 - 
operands
Description copied from class:ExpressionGet the immediate sub-expressions of this expression, with information about the relationship of each expression to its parent expression.If the expression is a Callable, then it is required that the order of the operands returned by this function is the same as the order of arguments supplied to the corresponding call() method.
- Specified by:
 operandsin classInstruction- Returns:
 - an iterator containing the sub-expressions of this expression
 
 - 
getIntrinsicDependencies
public int getIntrinsicDependencies()Description copied from class:ExpressionDetermine the intrinsic dependencies of an expression, that is, those which are not derived from the dependencies of its subexpressions. For example, position() has an intrinsic dependency on the context position, while (position()+1) does not. The default implementation of the method returns 0, indicating "no dependencies".- Overrides:
 getIntrinsicDependenciesin classExpression- Returns:
 - an integer containing bit-significant flags identifying the "intrinsic" dependencies. The flags are documented in class net.sf.saxon.value.StaticProperty
 
 - 
copy
Copy an expression. This makes a deep copy.- Specified by:
 copyin classExpression- Parameters:
 rebindings- variables that need to be re-bound- Returns:
 - the copy of the original expression
 
 - 
getInstructionNameCode
public int getInstructionNameCode()Get the name of this instruction for diagnostic and tracing purposes- Overrides:
 getInstructionNameCodein classInstruction- Returns:
 - a code identifying the instruction: typically but not always the fingerprint of a name in the XSLT namespace
 
 - 
export
Diagnostic print of expression structure. The abstract expression tree is written to the supplied output destination.- Specified by:
 exportin interfaceExportAgent- Specified by:
 exportin classExpression- Parameters:
 out- the expression presenter used to display the structure- Throws:
 XPathException- if the export fails, for example if an expression is found that won't work in the target environment.
 - 
getElaborator
Description copied from class:ExpressionMake an elaborator for this expression- Overrides:
 getElaboratorin classExpression- Returns:
 - an appropriate 
Elaborator 
 
 -