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

Function expr_binary

src/cypher/cypher.c:821–827  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

819}
820
821static cbm_expr_t *expr_binary(cbm_expr_type_t type, cbm_expr_t *left, cbm_expr_t *right) {
822 cbm_expr_t *e = calloc(CBM_ALLOC_ONE, sizeof(cbm_expr_t));
823 e->type = type;
824 e->left = left;
825 e->right = right;
826 return e;
827}
828
829static cbm_expr_t *expr_not(cbm_expr_t *child) {
830 cbm_expr_t *e = calloc(CBM_ALLOC_ONE, sizeof(cbm_expr_t));

Callers 3

parse_and_exprFunction · 0.85
parse_xor_exprFunction · 0.85
parse_or_exprFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected