| 367 | } |
| 368 | |
| 369 | const cypher_astnode_t **AST_GetTypedNodes |
| 370 | ( |
| 371 | const cypher_astnode_t *root, |
| 372 | cypher_astnode_type_t type |
| 373 | ) { |
| 374 | const cypher_astnode_t **nodes = array_new(const cypher_astnode_t *, 0); |
| 375 | _AST_GetTypedNodes(&nodes, root, type); |
| 376 | return nodes; |
| 377 | } |
| 378 | |
| 379 | void AST_CollectAliases |
| 380 | ( |
no test coverage detected