Skip to main content

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

ParameterTypeDefault valueDescription
nameOrExprASTNodeundefinedThe expression or name that yields the function to call.
argsASTNode[][]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

ParameterType
visitorXQueryVisitor<Ret, Arg>
arg?Arg

Returns

Ret

Implementation of

ASTNode.accept