@@ -648,7 +648,7 @@ merge(Compressor.prototype, {
|
||||
tw.in_loop = this;
|
||||
push(tw);
|
||||
this.body.walk(tw);
|
||||
if (has_break_or_continue(this)) {
|
||||
if (has_break_or_continue(this, tw.parent())) {
|
||||
pop(tw);
|
||||
push(tw);
|
||||
}
|
||||
@@ -665,7 +665,7 @@ merge(Compressor.prototype, {
|
||||
if (this.condition) this.condition.walk(tw);
|
||||
this.body.walk(tw);
|
||||
if (this.step) {
|
||||
if (has_break_or_continue(this)) {
|
||||
if (has_break_or_continue(this, tw.parent())) {
|
||||
pop(tw);
|
||||
push(tw);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user