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

Unified Diff: test/mjsunit/property-name-eval-arguments.js

Issue 899363002: Allow eval and arguments as property names (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Cleanup based on code review Created 5 years, 10 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 | « test/mjsunit/harmony/method-name-eval-arguments.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/property-name-eval-arguments.js
diff --git a/test/mjsunit/property-name-eval-arguments.js b/test/mjsunit/property-name-eval-arguments.js
new file mode 100644
index 0000000000000000000000000000000000000000..ebb07485c30bfa66d727e1eb1c773d72a1e7ba2d
--- /dev/null
+++ b/test/mjsunit/property-name-eval-arguments.js
@@ -0,0 +1,59 @@
+// 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.
+
+
+(function TestSloppyMode() {
+ var e = 1, a = 2;
+ var o = {
+ get eval() {
+ return e;
+ },
+ set eval(v) {
+ e = v;
+ },
+ get arguments() {
+ return a;
+ },
+ set arguments(v) {
+ a = v;
+ },
+ };
+
+ assertEquals(1, o.eval);
+ o.eval = 3;
+ assertEquals(3, e);
+
+ assertEquals(2, o.arguments);
+ o.arguments = 4;
+ assertEquals(4, a);
+})();
+
+
+(function TestStrictMode() {
+ 'use strict';
+
+ var e = 1, a = 2;
+ var o = {
+ get eval() {
+ return e;
+ },
+ set eval(v) {
+ e = v;
+ },
+ get arguments() {
+ return a;
+ },
+ set arguments(v) {
+ a = v;
+ },
+ };
+
+ assertEquals(1, o.eval);
+ o.eval = 3;
+ assertEquals(3, e);
+
+ assertEquals(2, o.arguments);
+ o.arguments = 4;
+ assertEquals(4, a);
+})();
« no previous file with comments | « test/mjsunit/harmony/method-name-eval-arguments.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698