Skip to main content

Class: FLWORFor

Defined in: lang-xquery/src/ast/flwor.ts:21

XQuery for clause iterating over one or more sequences in parallel.

Implements

Constructors

Constructor

new FLWORFor(bindings): FLWORFor

Defined in: lang-xquery/src/ast/flwor.ts:22

Parameters

ParameterTypeDescription
bindingsFLWORForBinding[]The individual variable bindings declared within this for clause.

Returns

FLWORFor

Properties

bindings

bindings: FLWORForBinding[]

Defined in: lang-xquery/src/ast/flwor.ts:24

The individual variable bindings declared within this for clause.

Methods

accept()

accept<Ret, Arg>(visitor, arg?): Ret

Defined in: lang-xquery/src/ast/flwor.ts:27

Dispatches this node to the matching method on visitor.

Type Parameters

Type Parameter
Ret
Arg

Parameters

ParameterType
visitorXQueryVisitor<Ret, Arg>
arg?Arg

Returns

Ret

Implementation of

ASTNode.accept