Class: DynamicFunctionCall
Defined in: lang-xquery/src/ast/function.ts:20
XQuery dynamic function call where the function reference is resolved at runtime.
Implements
Constructors
Constructor
new DynamicFunctionCall(
nameOrExpr,args?):DynamicFunctionCall
Defined in: lang-xquery/src/ast/function.ts:21
Parameters
| Parameter | Type | Default value | Description |
|---|---|---|---|
nameOrExpr | ASTNode | undefined | The expression or name that yields the function to call. |
args | ASTNode[] | [] | The argument expressions passed to the function. |
Returns
DynamicFunctionCall
Properties
args
args:
ASTNode[] =[]
Defined in: lang-xquery/src/ast/function.ts:25
The argument expressions passed to the function.
nameOrExpr
nameOrExpr:
ASTNode
Defined in: lang-xquery/src/ast/function.ts:23
The expression or name that yields the function to call.
Methods
accept()
accept<
Ret,Arg>(visitor,arg?):Ret
Defined in: lang-xquery/src/ast/function.ts:28
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