| 126 | "java.lang.Void", NULL}; |
| 127 | |
| 128 | static 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. */ |
no outgoing calls
no test coverage detected