| 36 | } profile_frame_t; |
| 37 | |
| 38 | static bool is_control_if(const char *k) { |
| 39 | return strcmp(k, "if_statement") == 0 || strcmp(k, "if_expression") == 0 || |
| 40 | strcmp(k, "elif_clause") == 0; |
| 41 | } |
| 42 | |
| 43 | static bool is_control_for(const char *k) { |
| 44 | return strcmp(k, "for_statement") == 0 || strcmp(k, "for_range_loop") == 0 || |
no outgoing calls
no test coverage detected