Class: InstanceOfExpr
Defined in: lang-xquery/src/ast/expression.ts:150
XQuery expr instance of SequenceType type-test expression.
Implements
Constructors
Constructor
new InstanceOfExpr(
expr,type):InstanceOfExpr
Defined in: lang-xquery/src/ast/expression.ts:151
Parameters
| Parameter | Type | Description |
|---|---|---|
expr | ASTNode | The expression being tested. |
type | ASTSequenceType | The sequence type to test against. |
Returns
InstanceOfExpr
Properties
expr
expr:
ASTNode
Defined in: lang-xquery/src/ast/expression.ts:153
The expression being tested.
type
type:
ASTSequenceType
Defined in: lang-xquery/src/ast/expression.ts:155
The sequence type to test against.
Methods
accept()
accept<
Ret,Arg>(visitor,arg?):Ret
Defined in: lang-xquery/src/ast/expression.ts:158
Dispatches this node to the matching method on visitor.
Type Parameters
| Type Parameter |
|---|
Ret |
Arg |
Parameters
| Parameter | Type |
|---|---|
visitor | XQueryVisitor<Ret, Arg> |
arg? | Arg |
Returns
Ret