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

Unified Diff: test/mjsunit/harmony/block-scope-class.js

Issue 1254003004: Class block scoping tests (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/harmony/block-scope-class.js
diff --git a/test/mjsunit/harmony/block-scope-class.js b/test/mjsunit/harmony/block-scope-class.js
new file mode 100644
index 0000000000000000000000000000000000000000..5bcf8ded228a6e15189c52c1c474194e64afe5ea
--- /dev/null
+++ b/test/mjsunit/harmony/block-scope-class.js
@@ -0,0 +1,45 @@
+// 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.
+
+// Test for conflicting variable bindings.
+
+// Flags: --no-legacy-const --harmony-sloppy
adamk 2015/07/25 01:29:38 What does legacy const have to do with it? I see n
+
+function AssertEqualsStrictAndSloppy(value, code) {
+ assertEquals(value, eval("(function() {" + code + "})()"));
+ assertEquals(value, eval("(function() { 'use strict'; " + code + "})()"));
+ assertEquals(value, eval("(function() { var x = 0; {" + code + "} })()"));
+ assertEquals(value, eval("(function() { 'use strict'; var x = 0; {" + code + "} })()"));
adamk 2015/07/25 01:29:38 Please wrap to 80 chars here and elsewhere in this
+}
+
+function AssertThrowsStrictAndSloppy(code, error) {
+ assertThrows("(function() {" + code + "})()", error);
+ assertThrows("(function() { 'use strict'; " + code + "})()", error);
+ assertThrows("(function() { var x = 0; { " + code + "} })()", error);
+ assertThrows("(function() { 'use strict'; var x = 0; {" + code + "} })()", error);
+}
+
+(function TestClassTDZ() {
+ AssertEqualsStrictAndSloppy("x", "function f() { return x; }; class x { }; return f().name;");
+ AssertEqualsStrictAndSloppy("x", "class x { }; function f() { return x; }; return f().name;");
+ AssertEqualsStrictAndSloppy("x", "class x { }; var result = f().name; function f() { return x; }; return result;");
+ AssertThrowsStrictAndSloppy("function f() { return x; }; f(); class x { };", ReferenceError);
+ AssertThrowsStrictAndSloppy("f(); function f() { return x; }; class x { };", ReferenceError);
+ AssertThrowsStrictAndSloppy("f(); class x { }; function f() { return x; };", ReferenceError);
+ AssertThrowsStrictAndSloppy("var x = 1; { f(); class x { }; function f() { return x; }; }", ReferenceError);
+ AssertThrowsStrictAndSloppy("x = 3; class x { };", ReferenceError)
+})();
+
+(function TestClassNameConflict() {
+ AssertThrowsStrictAndSloppy("class x { }; var x;", SyntaxError);
+ AssertThrowsStrictAndSloppy("var x; class x { };", SyntaxError);
+ AssertThrowsStrictAndSloppy("class x { }; function x() { };", SyntaxError);
+ AssertThrowsStrictAndSloppy("function x() { }; class x { };", SyntaxError);
+ AssertThrowsStrictAndSloppy("class x { }; for (var x = 0; false;) { };", SyntaxError);
+ AssertThrowsStrictAndSloppy("for (var x = 0; false;) { }; class x { };", SyntaxError);
+})();
+
+(function TestClassMutableBinding() {
+ AssertEqualsStrictAndSloppy("x3", "class x { }; var y = x.name; x = 3; return y + x;")
+})();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698