Skip to main content

Class: FLWORExpr

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

XQuery FLWOR expression containing an ordered sequence of for/let/window/where/group-by/order-by/count/return clauses.

Implements

Constructors

Constructor

new FLWORExpr(clauses): FLWORExpr

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

Parameters

ParameterTypeDescription
clausesFLWORClause[]The ordered list of FLWOR clauses; the last clause must be a FLWORReturn.

Returns

FLWORExpr

Properties

clauses

clauses: FLWORClause[]

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

The ordered list of FLWOR clauses; the last clause must be a FLWORReturn.

Methods

accept()

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

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

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