| 41 | } |
| 42 | |
| 43 | static bool is_control_for(const char *k) { |
| 44 | return strcmp(k, "for_statement") == 0 || strcmp(k, "for_range_loop") == 0 || |
| 45 | strcmp(k, "for_expression") == 0 || strcmp(k, "for_in_clause") == 0; |
| 46 | } |
| 47 | |
| 48 | static bool is_control_while(const char *k) { |
| 49 | return strcmp(k, "while_statement") == 0 || strcmp(k, "while_expression") == 0 || |
no outgoing calls
no test coverage detected