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

Function is_number_lit

src/semantic/ast_profile.c:86–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86static bool is_number_lit(const char *k) {
87 return strcmp(k, "number") == 0 || strcmp(k, "integer") == 0 || strcmp(k, "float") == 0 ||
88 strcmp(k, "integer_literal") == 0 || strcmp(k, "float_literal") == 0;
89}
90
91static bool is_bool_lit(const char *k) {
92 return strcmp(k, "true") == 0 || strcmp(k, "false") == 0;

Callers 2

accumulate_expressionsFunction · 0.85
accumulate_halsteadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected