| 70 | } |
| 71 | |
| 72 | static bool is_arithmetic(const char *k) { |
| 73 | return strcmp(k, "unary_expression") == 0 || strcmp(k, "update_expression") == 0; |
| 74 | } |
| 75 | |
| 76 | static bool is_assignment(const char *k) { |
| 77 | return strcmp(k, "assignment_expression") == 0 || strcmp(k, "assignment_statement") == 0 || |
no outgoing calls
no test coverage detected