Skip to main content

Class: ASTTuple

Defined in: lang-sql/src/ast/expression.ts:100

Immutable array, used for example in IN expressions.

Implements

Constructors

Constructor

new ASTTuple(items): ASTTuple

Defined in: lang-sql/src/ast/expression.ts:101

Parameters

ParameterTypeDescription
itemsASTNode[]The tuple elements.

Returns

ASTTuple

Properties

items

items: ASTNode[]

Defined in: lang-sql/src/ast/expression.ts:103

The tuple elements.

Methods

accept()

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

Defined in: lang-sql/src/ast/expression.ts:106

Dispatches this node to the matching method on visitor.

Type Parameters

Type Parameter
Ret
Arg

Parameters

ParameterType
visitorSQLVisitor<Ret, Arg>
arg?Arg

Returns

Ret

Implementation of

ASTNode.accept