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

Function is_control_while

src/semantic/ast_profile.c:48–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

46}
47
48static bool is_control_while(const char *k) {
49 return strcmp(k, "while_statement") == 0 || strcmp(k, "while_expression") == 0 ||
50 strcmp(k, "do_statement") == 0;
51}
52
53static bool is_control_switch(const char *k) {
54 return strcmp(k, "switch_statement") == 0 || strcmp(k, "switch_expression") == 0 ||

Callers 3

is_operator_nodeFunction · 0.85
accumulate_control_flowFunction · 0.85
cbm_ast_profile_computeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected