MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / expr_leaf

Function expr_leaf

src/cypher/cypher.c:781–786  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

779}
780
781static cbm_expr_t *expr_leaf(cbm_condition_t c) {
782 cbm_expr_t *e = calloc(CBM_ALLOC_ONE, sizeof(cbm_expr_t));
783 e->type = EXPR_CONDITION;
784 e->cond = c;
785 return e;
786}
787
788static cbm_expr_t *expr_binary(cbm_expr_type_t type, cbm_expr_t *left, cbm_expr_t *right) {
789 cbm_expr_t *e = calloc(CBM_ALLOC_ONE, sizeof(cbm_expr_t));

Callers 3

parse_in_listFunction · 0.85
parse_exists_predicateFunction · 0.85
parse_condition_exprFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected