| 89 | } |
| 90 | |
| 91 | static bool is_bool_lit(const char *k) { |
| 92 | return strcmp(k, "true") == 0 || strcmp(k, "false") == 0; |
| 93 | } |
| 94 | |
| 95 | static bool is_operator_node(const char *k) { |
| 96 | /* Named nodes that represent operations (not data). */ |
no outgoing calls
no test coverage detected