Skip to main content

Class: XQueryIdentifier

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

An XQuery (possibly namespace-prefixed) name whose parts are split from the raw source text.

Extends

Extended by

Constructors

Constructor

new XQueryIdentifier(original): XQueryIdentifier

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

Parameters

ParameterTypeDescription
originalstringThe raw lexed name string (e.g. "xs:integer"); parts holds the split components.

Returns

XQueryIdentifier

Overrides

ASTIdentifier.constructor

Properties

aggregate?

optional aggregate?: AggregateCall

Defined in: core/dist/ast.d.ts:76

Set when this identifier refers to an aggregate call in a GROUP BY context.

Inherited from

ASTIdentifier.aggregate


original

original: string

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

The raw lexed name string (e.g. "xs:integer"); parts holds the split components.


parts

parts: (string | number | symbol)[]

Defined in: core/dist/ast.d.ts:78

Ordered sequence of name parts that form the qualified identifier.

Inherited from

ASTIdentifier.parts

Methods

[iterator]()

[iterator](): ArrayIterator<string | number | symbol>

Defined in: core/dist/ast.d.ts:80

Iterates over parts in order.

Returns

ArrayIterator<string | number | symbol>

Inherited from

ASTIdentifier.[iterator]


accept()

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

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

ASTNode.accept

Type Parameters

Type Parameter
Ret
Arg

Parameters

ParameterType
visitorXQueryVisitor<Ret, Arg>
arg?Arg

Returns

Ret

Overrides

ASTIdentifier.accept


equals()

equals(other): boolean

Defined in: core/dist/ast.d.ts:86

Returns true when other has the same parts in the same order.

Parameters

ParameterType
otherASTIdentifier

Returns

boolean

Inherited from

ASTIdentifier.equals


fromParts()

static fromParts(parts): ASTIdentifier

Defined in: core/dist/ast.d.ts:84

Creates an ASTIdentifier from a pre-built parts array.

Parameters

ParameterType
parts(string | number | symbol)[]

Returns

ASTIdentifier

Inherited from

ASTIdentifier.fromParts