| 101 | } |
| 102 | |
| 103 | static bool is_identifier(const char *k) { |
| 104 | return strcmp(k, "identifier") == 0 || strcmp(k, "field_identifier") == 0 || |
| 105 | strcmp(k, "property_identifier") == 0 || strcmp(k, "type_identifier") == 0; |
| 106 | } |
| 107 | |
| 108 | /* Simple hash set for Halstead unique counting (open addressing). */ |
| 109 | static bool halstead_insert(uint32_t *set, const char *key) { |
no outgoing calls
no test coverage detected