| 94 | return true; |
| 95 | } |
| 96 | void unwind_stack() { |
| 97 | if (context.empty()) { |
| 98 | return; |
| 99 | } |
| 100 | JobSource* file = context.top().file; |
| 101 | while (!context.empty() && context.top().file == file) { |
| 102 | stack_pull(); |
| 103 | } |
| 104 | } |
| 105 | void flowcontrol_init(void) { |
| 106 | while (!context.empty()) { |
| 107 | stack_pull(); |
no test coverage detected