| 236 | } |
| 237 | |
| 238 | inline bool AST_ContainsClause |
| 239 | ( |
| 240 | const AST *ast, |
| 241 | cypher_astnode_type_t clause |
| 242 | ) { |
| 243 | return AST_GetClause(ast, clause, NULL) != NULL; |
| 244 | } |
| 245 | |
| 246 | // checks to see if an AST tree contains specified node type |
| 247 | bool AST_TreeContainsType |
no test coverage detected