| 65 | } |
| 66 | |
| 67 | static bool is_comparison(const char *k) { |
| 68 | return strcmp(k, "binary_expression") == 0 || strcmp(k, "comparison_operator") == 0 || |
| 69 | strcmp(k, "boolean_operator") == 0; |
| 70 | } |
| 71 | |
| 72 | static bool is_arithmetic(const char *k) { |
| 73 | return strcmp(k, "unary_expression") == 0 || strcmp(k, "update_expression") == 0; |
no outgoing calls
no test coverage detected