We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 076a800 commit f4392d5Copy full SHA for f4392d5
crates/tree_shaker/src/nodes/stmt/do_while_statement.rs
@@ -17,7 +17,9 @@ impl<'a> Analyzer<'a> {
17
self.push_cf_scope(CfScopeKind::LoopBreak, Some(false));
18
19
// Execute the first round.
20
+ self.push_cf_scope(CfScopeKind::LoopContinue, Some(false));
21
self.exec_statement(&node.body);
22
+ self.pop_cf_scope();
23
24
if self.cf_scope().must_exited() {
25
self.pop_cf_scope();
0 commit comments