maps entities in REMOVE clause
| 295 | |
| 296 | // maps entities in REMOVE clause |
| 297 | static void _AST_MapRemoveClauseReferences |
| 298 | ( |
| 299 | AST *ast, |
| 300 | const cypher_astnode_t *remove_clause |
| 301 | ) { |
| 302 | ASSERT(ast != NULL); |
| 303 | ASSERT(remove_clause != NULL); |
| 304 | |
| 305 | uint nitems = cypher_ast_remove_nitems(remove_clause); |
| 306 | for(uint i = 0; i < nitems; i++) { |
| 307 | // get the SET directive at this index |
| 308 | const cypher_astnode_t *set_item = |
| 309 | cypher_ast_remove_get_item(remove_clause, i); |
| 310 | _AST_MapRemoveItemReferences(ast, set_item); |
| 311 | } |
| 312 | } |
| 313 | |
| 314 | // maps entities in UNWIND clause |
| 315 | static void _AST_MapUnwindClauseReferences |
no test coverage detected