| 56 | } |
| 57 | |
| 58 | static bool is_control_try(const char *k) { |
| 59 | return strcmp(k, "try_statement") == 0 || strcmp(k, "try_expression") == 0 || |
| 60 | strcmp(k, "catch_clause") == 0 || strcmp(k, "except_clause") == 0; |
| 61 | } |
| 62 | |
| 63 | static bool is_return(const char *k) { |
| 64 | return strcmp(k, "return_statement") == 0 || strcmp(k, "return_expression") == 0; |
no outgoing calls
no test coverage detected