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

Function is_string_lit

src/semantic/ast_profile.c:81–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81static bool is_string_lit(const char *k) {
82 return strcmp(k, "string") == 0 || strcmp(k, "string_literal") == 0 ||
83 strcmp(k, "interpreted_string_literal") == 0 || strcmp(k, "raw_string_literal") == 0;
84}
85
86static bool is_number_lit(const char *k) {
87 return strcmp(k, "number") == 0 || strcmp(k, "integer") == 0 || strcmp(k, "float") == 0 ||

Callers 2

accumulate_expressionsFunction · 0.85
accumulate_halsteadFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected