mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
30af06bb70
swc_ecmascript: - add `ExprStmt`. - change type of regex.expression and regex.flags.
10 lines
135 B
JavaScript
10 lines
135 B
JavaScript
(function() {
|
|
a: for(;;){
|
|
for(;;){
|
|
break a;
|
|
b(); // This should be removed.
|
|
|
|
}
|
|
}
|
|
}());
|