JS/Inlining: minor improvements and clarifications after code review. Test whether expression without side effect does not prevent to relocate another expressions
This commit is contained in:
+3
-3
@@ -4,18 +4,18 @@ function f(x) {
|
||||
|
||||
function box() {
|
||||
var result1, result2, $a, $b;
|
||||
|
||||
|
||||
if (f(true)) {
|
||||
$a = "1";
|
||||
}
|
||||
result1 = $a;
|
||||
if (result1 !== "1") return "fail1: " + result1;
|
||||
|
||||
|
||||
if (f(false)) {
|
||||
$b = "1";
|
||||
}
|
||||
result2 = $b;
|
||||
if (result2 !== void 0) return "fail2: " + result2;
|
||||
|
||||
|
||||
return "OK";
|
||||
}
|
||||
Reference in New Issue
Block a user