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

Side by Side Diff: test/mjsunit/es6/block-conflicts.js

Issue 1007783002: Remove --harmony-scoping flag. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: CR feedback Created 5 years, 9 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/bugs/harmony/debug-blockscopes.js ('k') | test/mjsunit/es6/block-const-assign.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 //
5 // Flags: --harmony-scoping
6 4
7 // Test for conflicting variable bindings. 5 // Test for conflicting variable bindings.
8 6
9 "use strict"; 7 "use strict";
10 8
11 function CheckException(e) { 9 function CheckException(e) {
12 var string = e.toString(); 10 var string = e.toString();
13 assertTrue(string.indexOf("has already been declared") >= 0 || 11 assertTrue(string.indexOf("has already been declared") >= 0 ||
14 string.indexOf("redeclaration") >= 0); 12 string.indexOf("redeclaration") >= 0);
15 return 'Conflict'; 13 return 'Conflict';
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 // Test conflicting parameter/var bindings. 156 // Test conflicting parameter/var bindings.
159 for (var v = 0; v < varbinds.length; ++v) { 157 for (var v = 0; v < varbinds.length; ++v) {
160 TestNoConflict('(function (x) {' + varbinds[v] + '})();'); 158 TestNoConflict('(function (x) {' + varbinds[v] + '})();');
161 } 159 }
162 160
163 // Test conflicting catch/function bindings. 161 // Test conflicting catch/function bindings.
164 TestNoConflict('try {} catch(x) {' + funbind + '}'); 162 TestNoConflict('try {} catch(x) {' + funbind + '}');
165 163
166 // Test conflicting parameter/function bindings. 164 // Test conflicting parameter/function bindings.
167 TestNoConflict('(function (x) {' + funbind + '})();'); 165 TestNoConflict('(function (x) {' + funbind + '})();');
OLDNEW
« no previous file with comments | « test/mjsunit/bugs/harmony/debug-blockscopes.js ('k') | test/mjsunit/es6/block-const-assign.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698