improve handling of declaration statements (#4980)
This commit is contained in:
@@ -569,6 +569,38 @@ loop_block_2: {
|
||||
node_version: ">=4"
|
||||
}
|
||||
|
||||
do_break: {
|
||||
options = {
|
||||
loops: true,
|
||||
}
|
||||
input: {
|
||||
"use strict";
|
||||
try {
|
||||
do {
|
||||
if (a)
|
||||
break;
|
||||
let a;
|
||||
} while (!console);
|
||||
} catch (e) {
|
||||
console.log("PASS");
|
||||
}
|
||||
}
|
||||
expect: {
|
||||
"use strict";
|
||||
try {
|
||||
do {
|
||||
if (a)
|
||||
break;
|
||||
let a;
|
||||
} while (!console);
|
||||
} catch (e) {
|
||||
console.log("PASS");
|
||||
}
|
||||
}
|
||||
expect_stdout: "PASS"
|
||||
node_version: ">=4"
|
||||
}
|
||||
|
||||
do_continue: {
|
||||
options = {
|
||||
loops: true,
|
||||
@@ -629,6 +661,82 @@ dead_block_after_return: {
|
||||
node_version: ">=4"
|
||||
}
|
||||
|
||||
if_return_1: {
|
||||
options = {
|
||||
if_return: true,
|
||||
}
|
||||
input: {
|
||||
"use strict";
|
||||
function f(a) {
|
||||
function g() {
|
||||
return b = "PASS";
|
||||
}
|
||||
if (a)
|
||||
return g();
|
||||
let b;
|
||||
return g();
|
||||
};
|
||||
console.log(f());
|
||||
}
|
||||
expect: {
|
||||
"use strict";
|
||||
function f(a) {
|
||||
function g() {
|
||||
return b = "PASS";
|
||||
}
|
||||
if (a)
|
||||
return g();
|
||||
let b;
|
||||
return g();
|
||||
};
|
||||
console.log(f());
|
||||
}
|
||||
expect_stdout: "PASS"
|
||||
node_version: ">=4"
|
||||
}
|
||||
|
||||
if_return_2: {
|
||||
options = {
|
||||
if_return: true,
|
||||
}
|
||||
input: {
|
||||
"use strict";
|
||||
function f(a) {
|
||||
function g() {
|
||||
return b = "FAIL";
|
||||
}
|
||||
if (a)
|
||||
return g();
|
||||
let b;
|
||||
return g();
|
||||
};
|
||||
try {
|
||||
console.log(f(42));
|
||||
} catch (e) {
|
||||
console.log("PASS");
|
||||
}
|
||||
}
|
||||
expect: {
|
||||
"use strict";
|
||||
function f(a) {
|
||||
function g() {
|
||||
return b = "FAIL";
|
||||
}
|
||||
if (a)
|
||||
return g();
|
||||
let b;
|
||||
return g();
|
||||
};
|
||||
try {
|
||||
console.log(f(42));
|
||||
} catch (e) {
|
||||
console.log("PASS");
|
||||
}
|
||||
}
|
||||
expect_stdout: "PASS"
|
||||
node_version: ">=4"
|
||||
}
|
||||
|
||||
do_if_continue_1: {
|
||||
options = {
|
||||
if_return: true,
|
||||
|
||||
Reference in New Issue
Block a user