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

Function expr_binary

src/cypher/cypher.c:788–794  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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));
790 e->type = type;
791 e->left = left;
792 e->right = right;
793 return e;
794}
795
796static cbm_expr_t *expr_not(cbm_expr_t *child) {
797 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