Class: FLWORLet
Defined in: lang-xquery/src/ast/flwor.ts:51
XQuery let clause assigning whole sequences to variables.
Implements
Constructors
Constructor
new FLWORLet(
bindings):FLWORLet
Defined in: lang-xquery/src/ast/flwor.ts:52
Parameters
| Parameter | Type | Description |
|---|---|---|
bindings | [ASTVariable, ASTNode][] | Pairs of (variable, expression) where the variable is bound to the entire sequence. |
Returns
FLWORLet
Properties
bindings
bindings: [
ASTVariable,ASTNode][]
Defined in: lang-xquery/src/ast/flwor.ts:54
Pairs of (variable, expression) where the variable is bound to the entire sequence.
Methods
accept()
accept<
Ret,Arg>(visitor,arg?):Ret
Defined in: lang-xquery/src/ast/flwor.ts:57
Dispatches this node to the matching method on visitor.
Type Parameters
| Type Parameter |
|---|
Ret |
Arg |
Parameters
| Parameter | Type |
|---|---|
visitor | XQueryVisitor<Ret, Arg> |
arg? | Arg |
Returns
Ret