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

Function expr_binary

src/cypher/cypher.c:822–828  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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