Class: ASTVariable
Defined in: lang-xquery/src/ast/expression.ts:55
An XQuery variable reference ($name); parts holds the variable name components.
Remarks
original is always null - use parts to access the variable name.
If the first part is "param" it is replaced with the internal boundParam sentinel.
Extends
Constructors
Constructor
new ASTVariable(
name):ASTVariable
Defined in: lang-xquery/src/ast/expression.ts:56
Parameters
| Parameter | Type |
|---|---|
name | XQueryIdentifier |
Returns
ASTVariable
Overrides
Properties
aggregate?
optionalaggregate?: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
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.
Inherited from
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
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
accept()
accept<
Ret,Arg>(visitor,arg?):Ret
Defined in: lang-xquery/src/ast/expression.ts:64
ASTNode.accept
Type Parameters
| Type Parameter |
|---|
Ret |
Arg |
Parameters
| Parameter | Type |
|---|---|
visitor | XQueryVisitor<Ret, Arg> |
arg? | Arg |
Returns
Ret
Overrides
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
| Parameter | Type |
|---|---|
other | ASTIdentifier |
Returns
boolean
Inherited from
fromParts()
staticfromParts(parts):ASTIdentifier
Defined in: core/dist/ast.d.ts:84
Creates an ASTIdentifier from a pre-built parts array.
Parameters
| Parameter | Type |
|---|---|
parts | (string | number | symbol)[] |