| 657 | } |
| 658 | |
| 659 | std::unique_ptr<ParsedExpression> Transformer::transformProperty( |
| 660 | CypherParser::OC_PropertyExpressionContext& ctx) { |
| 661 | auto child = transformAtom(*ctx.oC_Atom()); |
| 662 | return createPropertyExpression(*ctx.oC_PropertyLookup(), std::move(child)); |
| 663 | } |
| 664 | |
| 665 | std::string Transformer::transformPropertyKeyName(CypherParser::OC_PropertyKeyNameContext& ctx) { |
| 666 | return transformSymbolicName(*ctx.oC_SymbolicName()); |
nothing calls this directly
no test coverage detected