MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / _visit_break

Function _visit_break

src/ast/ast_validations.c:1989–1997  ·  view source on GitHub ↗

break visitor traversal, resulting in a fast-fold

Source from the content-addressed store, hash-verified

1987
1988// break visitor traversal, resulting in a fast-fold
1989static VISITOR_STRATEGY _visit_break
1990(
1991 const cypher_astnode_t *n, // ast-node
1992 bool start, // first traversal
1993 ast_visitor *visitor // visitor
1994) {
1995 Error_UnsupportedASTNodeType(n);
1996 return VISITOR_BREAK;
1997}
1998
1999// visit a binary operator, break if it is unsupported
2000static VISITOR_STRATEGY _visit_binary_op

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected