| 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 || |
| 88 | strcmp(k, "integer_literal") == 0 || strcmp(k, "float_literal") == 0; |
| 89 | } |
| 90 | |
| 91 | static bool is_bool_lit(const char *k) { |
| 92 | return strcmp(k, "true") == 0 || strcmp(k, "false") == 0; |
no outgoing calls
no test coverage detected