Remove old expected.{js,json} files (#7187)

This commit is contained in:
Nicolò Ribaudo
2018-01-09 20:10:30 +01:00
committed by Brian Ng
parent 9e384f3915
commit 8659e1a88c
1597 changed files with 0 additions and 20188 deletions

View File

@@ -1,5 +0,0 @@
try {
throw 0;
} catch {
console.log("it failed, but this code executes");
}

View File

@@ -1,5 +0,0 @@
try {
throw 0;
} catch ([message]) {
console.log("it failed, but this code executes");
}

View File

@@ -1,5 +0,0 @@
try {
throw 0;
} catch {
console.log("it failed, but this code executes");
}

View File

@@ -1,7 +0,0 @@
try {
throw 0;
} catch ({
message
}) {
console.log("it failed, but this code executes");
}

View File

@@ -1,5 +0,0 @@
try {
throw 0;
} catch (e) {
e = new TypeError('A new variable is not being declared or initialized; the catch binding is being referenced and cannot be removed.');
}

View File

@@ -1,5 +0,0 @@
try {
throw 0;
} catch (err) {
console.log(err, "it failed, but this code executes");
}

View File

@@ -1,7 +0,0 @@
try {
throw 0;
} catch ({
message
}) {
console.log(message);
}

View File

@@ -1,7 +0,0 @@
try {
throw 0;
} catch {
console.log("it failed, but this code executes");
} finally {
console.log("this code also executes");
}

View File

@@ -1,7 +0,0 @@
try {
throw 0;
} catch (err) {
console.log(err, "it failed, but this code executes");
} finally {
console.log("this code also executes");
}