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

Side by Side Diff: test/mjsunit/es6/block-scoping-top-level-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-scoping-sloppy.js ('k') | test/mjsunit/es6/block-sloppy-function.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: --min-preparse-length=0 5 // Flags: --min-preparse-length=0
6 // Flags: --harmony-sloppy --harmony-sloppy-let
7 6
8 let xxx = 1; 7 let xxx = 1;
9 let f = undefined; 8 let f = undefined;
10 { 9 {
11 let inner_x = xxx; 10 let inner_x = xxx;
12 f = function() { return inner_x; }; 11 f = function() { return inner_x; };
13 } 12 }
14 13
15 assertSame(1, f()); 14 assertSame(1, f());
16 15
17 xxx = 42; 16 xxx = 42;
18 { 17 {
19 f = function() { return inner_x1; }; 18 f = function() { return inner_x1; };
20 let inner_x1 = xxx; 19 let inner_x1 = xxx;
21 } 20 }
22 21
23 assertSame(42, f()); 22 assertSame(42, f());
24 23
25 xxx = 31; 24 xxx = 31;
26 { 25 {
27 let inner_x1 = xxx; 26 let inner_x1 = xxx;
28 try { 27 try {
29 throw new Error(); 28 throw new Error();
30 } catch (e) { 29 } catch (e) {
31 f = function() { return inner_x1; }; 30 f = function() { return inner_x1; };
32 } 31 }
33 } 32 }
34 assertSame(31, f()); 33 assertSame(31, f());
OLDNEW
« no previous file with comments | « test/mjsunit/es6/block-scoping-sloppy.js ('k') | test/mjsunit/es6/block-sloppy-function.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698