Skip to main content

Class: SequenceConstructor

Defined in: lang-xquery/src/ast/expression.ts:192

XQuery comma-separated sequence constructor, e.g. (a, b, c).

Implements

Constructors

Constructor

new SequenceConstructor(items): SequenceConstructor

Defined in: lang-xquery/src/ast/expression.ts:193

Parameters

ParameterTypeDescription
itemsASTNode[]The individual item expressions whose results are concatenated into a sequence.

Returns

SequenceConstructor

Properties

items

items: ASTNode[]

Defined in: lang-xquery/src/ast/expression.ts:195

The individual item expressions whose results are concatenated into a sequence.

Methods

accept()

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

Defined in: lang-xquery/src/ast/expression.ts:198

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