| 79 | } |
| 80 | |
| 81 | static 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 | |
| 86 | static bool is_number_lit(const char *k) { |
| 87 | return strcmp(k, "number") == 0 || strcmp(k, "integer") == 0 || strcmp(k, "float") == 0 || |
no outgoing calls
no test coverage detected