| 479 | } |
| 480 | |
| 481 | void AST_SetParamsParseResult |
| 482 | ( |
| 483 | AST *ast, |
| 484 | cypher_parse_result_t *params_parse_result |
| 485 | ) { |
| 486 | // setting parameters within an AST should only occur once |
| 487 | ASSERT(ast->params_parse_result == NULL); |
| 488 | ast->params_parse_result = params_parse_result; |
| 489 | } |
| 490 | |
| 491 | AST *AST_ShallowCopy |
| 492 | ( |
no outgoing calls
no test coverage detected