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

Side by Side Diff: test/mjsunit/harmony/regress/regress-4904.js

Issue 1887743002: Re-scope inner scopes in arrow parameter initializers (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase and mark mjsunit/harmony/regress/regress-4658 as good for ignition 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 | « src/parsing/parameter-initializer-rewriter.cc ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // Flags: --harmony-do-expressions
6
7 (function testCatchScopeInDoExpression() {
8 var f = (s = 17, y = do { try { throw 25; } catch(e) { s += e; }; }) => s;
9 var result = f();
10 assertEquals(result, 42);
11 })();
12
13 (function testCatchScopeInDoExpression() {
14 var f = (s = 17, y = do { let t; try { throw 25; } catch(e) { s += e; }; }) => s;
15 var result = f();
16 assertEquals(result, 42);
17 })();
18
19 (function testCatchScopeInDoExpression() {
20 let t1;
21 var f = (s = 17, y = do { let t2; try { throw 25; } catch(e) { s += e; }; }) = > s;
22 var result = f();
23 assertEquals(result, 42);
24 })();
OLDNEW
« no previous file with comments | « src/parsing/parameter-initializer-rewriter.cc ('k') | test/mjsunit/mjsunit.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698