node/deps/v8/test/mjsunit/regress/regress-3926.js
Michaël Zasso ec02b811a8 deps: update V8 to 5.4.500.27
Pick up latest commit from the 5.4-lkgr branch.

deps: edit V8 gitignore to allow trace event copy
deps: update V8 trace event to 315bf1e2d45be7d53346c31cfcc37424a32c30c8
deps: edit V8 gitignore to allow gtest_prod.h copy
deps: update V8 gtest to 6f8a66431cb592dad629028a50b3dd418a408c87

PR-URL: https://github.com/nodejs/node/pull/8317
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
2016-09-22 09:51:19 +02:00

86 lines
1.9 KiB
JavaScript

// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// See: http://code.google.com/p/v8/issues/detail?id=3926
// Switch statements should disable hole check elimination
// Ensure that both reads and writes encounter the hole check
// FullCodeGen had an issue on reads; TurboFan had an issue on writes
function f(x) {
var z;
switch (x) {
case 1:
let y = 1;
case 2:
y = 2;
case 3:
z = y;
}
return z;
}
assertEquals(2, f(1));
assertThrows(function() {f(2)}, ReferenceError);
assertThrows(function() {f(3)}, ReferenceError);
// Ensure that hole checks are done even in subordinate scopes
assertThrows(function() {
switch (1) {
case 0:
let x = 2;
case 1:
{ // this block, plus the let below, adds another linear lexical scope
let y = 3;
x;
}
}
}, ReferenceError);
// Ensure that inner functions and eval don't skip hole checks
function g(x) {
switch (x) {
case 1:
let z;
case 2:
return function() { z = 1; }
case 3:
return function() { return z; }
case 4:
return eval("z = 1");
case 5:
return eval("z");
}
}
assertEquals(undefined, g(1)());
assertThrows(g(2), ReferenceError);
assertThrows(g(3), ReferenceError);
assertThrows(function () {g(4)}, ReferenceError);
assertThrows(function () {g(5)}, ReferenceError);
// Ensure the same in strict mode, with different eval and function semantics
function h(x) {
'use strict'
switch (x) {
case 1:
let z;
case 2:
return function() { z = 1; }
case 3:
return function() { return z; }
case 4:
return eval("z = 1");
case 5:
return eval("z");
}
}
assertEquals(undefined, h(1)());
assertThrows(h(2), ReferenceError);
assertThrows(h(3), ReferenceError);
assertThrows(function () {h(4)}, ReferenceError);
assertThrows(function () {h(5)}, ReferenceError);