| 46 | } |
| 47 | |
| 48 | static bool is_control_while(const char *k) { |
| 49 | return strcmp(k, "while_statement") == 0 || strcmp(k, "while_expression") == 0 || |
| 50 | strcmp(k, "do_statement") == 0; |
| 51 | } |
| 52 | |
| 53 | static bool is_control_switch(const char *k) { |
| 54 | return strcmp(k, "switch_statement") == 0 || strcmp(k, "switch_expression") == 0 || |
no outgoing calls
no test coverage detected