Skip to main content

Class: ASTMapLiteral

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

Map literal {key: value, ...}.

Implements

Constructors

Constructor

new ASTMapLiteral(items): ASTMapLiteral

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

Parameters

ParameterTypeDescription
itemsAliased<ASTNode>[]Key-value pairs where each alias is the string key name.

Returns

ASTMapLiteral

Properties

items

items: Aliased<ASTNode>[]

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

Key-value pairs where each alias is the string key name.

Methods

accept()

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

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

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