mirror of
https://github.com/swc-project/swc.git
synced 2024-12-25 06:36:08 +03:00
fix(es/compat): Handle nested for loops with break
/continue
(#4777)
This commit is contained in:
parent
5ddd2dca6d
commit
4f00914c1a
@ -796,10 +796,6 @@ impl VisitMut for FlowHelper<'_> {
|
|||||||
|
|
||||||
match node {
|
match node {
|
||||||
Stmt::Continue(ContinueStmt { label, .. }) => {
|
Stmt::Continue(ContinueStmt { label, .. }) => {
|
||||||
if self.in_nested_loop {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
let value = if let Some(label) = label {
|
let value = if let Some(label) = label {
|
||||||
let value: JsWord = format!("continue|{}", label.sym).into();
|
let value: JsWord = format!("continue|{}", label.sym).into();
|
||||||
self.label
|
self.label
|
||||||
|
@ -0,0 +1,9 @@
|
|||||||
|
out: for (let i = 0; i < 4; i++) {
|
||||||
|
for (let j = 0; j < 4; ++j) {
|
||||||
|
if (i < 2) continue out;
|
||||||
|
|
||||||
|
[1].forEach((_) => {
|
||||||
|
console.log(i, j);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,24 @@
|
|||||||
|
var _loop = function(i) {
|
||||||
|
var _loop1 = function(j) {
|
||||||
|
if (i < 2) return "continue|out";
|
||||||
|
[
|
||||||
|
1
|
||||||
|
].forEach((_)=>{
|
||||||
|
console.log(i, j);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
for(var j = 0; j < 4; ++j){
|
||||||
|
var _ret1 = _loop1(j);
|
||||||
|
switch(_ret1){
|
||||||
|
case "continue|out":
|
||||||
|
return "continue|out";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
out: for(var i = 0; i < 4; i++){
|
||||||
|
var _ret = _loop(i);
|
||||||
|
switch(_ret){
|
||||||
|
case "continue|out":
|
||||||
|
continue out;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user