Skip to main content

Class: PropLookup

Defined in: lang-cypher/src/ast/expression.ts:185

Property access expression expr.prop.

Implements

Constructors

Constructor

new PropLookup(expr, prop): PropLookup

Defined in: lang-cypher/src/ast/expression.ts:186

Parameters

ParameterTypeDescription
exprASTNodeThe node, relationship, or map expression being accessed.
propCypherIdentifierThe property name to look up.

Returns

PropLookup

Properties

expr

expr: ASTNode

Defined in: lang-cypher/src/ast/expression.ts:188

The node, relationship, or map expression being accessed.


prop

prop: CypherIdentifier

Defined in: lang-cypher/src/ast/expression.ts:190

The property name to look up.

Methods

accept()

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

Defined in: lang-cypher/src/ast/expression.ts:193

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