Skip to main content

Class: ASTListLiteral

Defined in: lang-cypher/src/ast/literal.ts:80

List literal [item, ...].

Implements

Constructors

Constructor

new ASTListLiteral(items): ASTListLiteral

Defined in: lang-cypher/src/ast/literal.ts:81

Parameters

ParameterTypeDescription
itemsASTNode[]Ordered list of element expressions.

Returns

ASTListLiteral

Properties

items

items: ASTNode[]

Defined in: lang-cypher/src/ast/literal.ts:83

Ordered list of element expressions.

Methods

accept()

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

Defined in: lang-cypher/src/ast/literal.ts:86

Dispatches this node to the matching method on visitor.

Type Parameters

Type Parameter
Ret
Arg

Parameters

ParameterType
visitorCypherVisitor<Ret, Arg>
arg?Arg

Returns

Ret

Implementation of

ASTNode.accept