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

Side by Side Diff: test/mjsunit/es6/class-property-name-eval-arguments.js

Issue 1858943002: Remove runtime flags for sloppy mode block scoping features (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « test/mjsunit/es6/class-computed-property-names-super.js ('k') | test/mjsunit/es6/classes.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Flags: --harmony-sloppy
6
7 5
8 (function Method() { 6 (function Method() {
9 class C { 7 class C {
10 eval() { 8 eval() {
11 return 1; 9 return 1;
12 } 10 }
13 arguments() { 11 arguments() {
14 return 2; 12 return 2;
15 } 13 }
16 static eval() { 14 static eval() {
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 68
71 new C().eval = 1; 69 new C().eval = 1;
72 assertEquals(1, x); 70 assertEquals(1, x);
73 new C().arguments = 2; 71 new C().arguments = 2;
74 assertEquals(2, x); 72 assertEquals(2, x);
75 C.eval = 3; 73 C.eval = 3;
76 assertEquals(3, x); 74 assertEquals(3, x);
77 C.arguments = 4; 75 C.arguments = 4;
78 assertEquals(4, x); 76 assertEquals(4, x);
79 })(); 77 })();
OLDNEW
« no previous file with comments | « test/mjsunit/es6/class-computed-property-names-super.js ('k') | test/mjsunit/es6/classes.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698