Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1228)

Unified Diff: test/mjsunit/harmony/block-eval-var-over-legacy-const.js

Issue 1382513003: Test for var declarations in eval which conflict with let (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: mask out eval bit Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/variables.cc ('k') | test/mjsunit/harmony/block-eval-var-over-let.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/block-eval-var-over-legacy-const.js
diff --git a/test/mjsunit/harmony/block-eval-var-over-legacy-const.js b/test/mjsunit/harmony/block-eval-var-over-legacy-const.js
new file mode 100644
index 0000000000000000000000000000000000000000..0eb84564333b43db99cfcd33b38b29317670c5ad
--- /dev/null
+++ b/test/mjsunit/harmony/block-eval-var-over-legacy-const.js
@@ -0,0 +1,109 @@
+// 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.
+
+// Flags: --harmony-sloppy --harmony-sloppy-let --harmony-sloppy-function
+
+// Var-let conflict in a function throws, even if the var is in an eval
+
+let caught = false;
+
+// Throws at the top level of a function
+try {
+ (function() {
+ let x = 1;
+ eval('const x = 2');
+ })()
+} catch (e) {
+ caught = true;
+}
+assertTrue(caught);
+
+// If the eval is in its own block scope, throws
+caught = false;
+try {
+ (function() {
+ let y = 1;
+ { eval('const y = 2'); }
+ })()
+} catch (e) {
+ caught = true;
+}
+assertTrue(caught);
+
+// If the let is in its own block scope, with the eval, throws
+caught = false
+try {
+ (function() {
+ {
+ let x = 1;
+ eval('const x = 2');
+ }
+ })();
+} catch (e) {
+ caught = true;
+}
+assertTrue(caught);
+
+// Legal if the let is no longer visible
+caught = false
+try {
+ (function() {
+ {
+ let x = 1;
+ }
+ eval('const x = 2');
+ })();
+} catch (e) {
+ caught = true;
+}
+assertFalse(caught);
+
+// In global scope
+caught = false;
+try {
+ let z = 1;
+ eval('const z = 2');
+} catch (e) {
+ caught = true;
+}
+assertTrue(caught);
+
+// Let declarations beyond a function boundary don't conflict
+caught = false;
+try {
+ let a = 1;
+ (function() {
+ eval('const a');
+ })();
+} catch (e) {
+ caught = true;
+}
+assertFalse(caught);
+
+// var across with doesn't conflict
+caught = false;
+try {
+ (function() {
+ with ({x: 1}) {
+ eval("const x = 2;");
+ }
+ })();
+} catch (e) {
+ caught = true;
+}
+assertFalse(caught);
+
+// var can still conflict with let across a with
+caught = false;
+try {
+ (function() {
+ let x;
+ with ({x: 1}) {
+ eval("const x = 2;");
+ }
+ })();
+} catch (e) {
+ caught = true;
+}
+assertTrue(caught);
« no previous file with comments | « src/variables.cc ('k') | test/mjsunit/harmony/block-eval-var-over-let.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698