Skip to main content

Class: BaseURIDeclaration

Defined in: lang-xquery/src/ast/prolog.ts:53

XQuery declare base-uri "uri" declaration setting the static base URI.

Implements

Constructors

Constructor

new BaseURIDeclaration(uri): BaseURIDeclaration

Defined in: lang-xquery/src/ast/prolog.ts:54

Parameters

ParameterTypeDescription
uriASTStringLiteralThe base URI string literal.

Returns

BaseURIDeclaration

Properties

uri

uri: ASTStringLiteral

Defined in: lang-xquery/src/ast/prolog.ts:56

The base URI string literal.

Methods

accept()

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

Defined in: lang-xquery/src/ast/prolog.ts:59

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