| 51 | } |
| 52 | |
| 53 | static bool is_control_switch(const char *k) { |
| 54 | return strcmp(k, "switch_statement") == 0 || strcmp(k, "switch_expression") == 0 || |
| 55 | strcmp(k, "match_expression") == 0 || strcmp(k, "type_switch_statement") == 0; |
| 56 | } |
| 57 | |
| 58 | static bool is_control_try(const char *k) { |
| 59 | return strcmp(k, "try_statement") == 0 || strcmp(k, "try_expression") == 0 || |
no outgoing calls
no test coverage detected