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

Side by Side Diff: test/mjsunit/es6/block-let-contextual-sloppy.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/block-leave-sloppy.js ('k') | test/mjsunit/es6/block-let-crankshaft-sloppy.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 --harmony-sloppy-let
6
7 // let is usable as a variable with var, but not let or ES6 const 5 // let is usable as a variable with var, but not let or ES6 const
8 6
9 (function (){ 7 (function (){
10 assertEquals(undefined, let); 8 assertEquals(undefined, let);
11 9
12 var let; 10 var let;
13 11
14 let = 5; 12 let = 5;
15 assertEquals(5, let); 13 assertEquals(5, let);
16 14
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 })(); 48 })();
51 49
52 (function() { 50 (function() {
53 function let() { 51 function let() {
54 return 1; 52 return 1;
55 } 53 }
56 assertEquals(1, let()); 54 assertEquals(1, let());
57 })() 55 })()
58 56
59 assertThrows('for (let of []) {}', SyntaxError); 57 assertThrows('for (let of []) {}', SyntaxError);
OLDNEW
« no previous file with comments | « test/mjsunit/es6/block-leave-sloppy.js ('k') | test/mjsunit/es6/block-let-crankshaft-sloppy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698