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

Function is_java_primitive

internal/cbm/lsp/java_lsp.c:128–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126 "java.lang.Void", NULL};
127
128static bool is_java_primitive(const char *name) {
129 if (!name)
130 return false;
131 for (int i = 0; JAVA_PRIMITIVES[i]; i++) {
132 if (strcmp(name, JAVA_PRIMITIVES[i]) == 0)
133 return true;
134 }
135 return false;
136}
137
138/* Auto-imported java.lang single-type names. The JLS §7.5.5 says all classes
139 * in java.lang are imported on demand into every compilation unit. */

Callers 1

parse_param_text_fullFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected