Skip to main content

Class: FLWORWhere

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

XQuery where clause that filters tuples by a boolean expression.

Implements

Constructors

Constructor

new FLWORWhere(expr): FLWORWhere

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

Parameters

ParameterTypeDescription
exprASTNodeThe boolean filter expression; tuples for which this is false are discarded.

Returns

FLWORWhere

Properties

expr

expr: ASTNode

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

The boolean filter expression; tuples for which this is false are discarded.

Methods

accept()

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

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

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