Update babylon and remove bad label tests (#6188)
This commit is contained in:
committed by
Henry Zhu
parent
76161e0a73
commit
1797ac5015
@@ -1,15 +1,3 @@
|
||||
let x, y;
|
||||
{
|
||||
a: let x;
|
||||
let y;
|
||||
}
|
||||
|
||||
switch (0) {
|
||||
case 0: a: let x=0;
|
||||
}
|
||||
|
||||
// it should break from inside of switch statements using labels
|
||||
|
||||
loop:
|
||||
for (var i = 0; i < 10; i++) {
|
||||
const z = 3; // force loop function
|
||||
|
||||
@@ -1,18 +1,3 @@
|
||||
var x = void 0,
|
||||
y = void 0;
|
||||
{
|
||||
a: var _x = void 0;
|
||||
|
||||
var _y = void 0;
|
||||
}
|
||||
|
||||
switch (0) {
|
||||
case 0:
|
||||
a: var _x2 = 0;
|
||||
|
||||
} // it should break from inside of switch statements using labels
|
||||
|
||||
|
||||
var _loop = function () {
|
||||
var z = 3; // force loop function
|
||||
|
||||
|
||||
Reference in New Issue
Block a user