Adds an identifier or an alias to the reference map.
| 24 | |
| 25 | // Adds an identifier or an alias to the reference map. |
| 26 | static inline void _AST_UpdateRefMap(AST *ast, const char *name) { |
| 27 | raxInsert(ast->referenced_entities, (unsigned char *)name, strlen(name), NULL, NULL); |
| 28 | } |
| 29 | |
| 30 | // Map identifiers within an expression. |
| 31 | static void _AST_MapExpression(AST *ast, const cypher_astnode_t *exp) { |
no outgoing calls
no test coverage detected