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

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

Issue 1219853004: [es6] Initial support for let/const bindings in sloppy mode (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Updated tests and comments Created 5 years, 5 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
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 } finally { 168 } finally {
169 assertEquals('outer', eval('x')); 169 assertEquals('outer', eval('x'));
170 } 170 }
171 })('outer'); 171 })('outer');
172 } catch (e) { 172 } catch (e) {
173 if (e instanceof MjsUnitAssertionError) throw e; 173 if (e instanceof MjsUnitAssertionError) throw e;
174 } 174 }
175 175
176 176
177 // Verify that the context is correctly set in the stack frame after exiting 177 // Verify that the context is correctly set in the stack frame after exiting
178 // from with. 178 // from eval.
179 function f() {} 179 function f() {}
180 180
181 (function(x) { 181 (function(x) {
182 label: { 182 label: {
183 let x = 'inner'; 183 let x = 'inner';
184 break label; 184 break label;
185 } 185 }
186 f(); // The context could be restored from the stack after the call. 186 f(); // The context could be restored from the stack after the call.
187 assertEquals('outer', eval('x')); 187 assertEquals('outer', eval('x'));
188 })('outer'); 188 })('outer');
(...skipping 26 matching lines...) Expand all
215 let x = 'inner'; 215 let x = 'inner';
216 throw 0; 216 throw 0;
217 } finally { 217 } finally {
218 f(); 218 f();
219 assertEquals('outer', eval('x')); 219 assertEquals('outer', eval('x'));
220 } 220 }
221 })('outer'); 221 })('outer');
222 } catch (e) { 222 } catch (e) {
223 if (e instanceof MjsUnitAssertionError) throw e; 223 if (e instanceof MjsUnitAssertionError) throw e;
224 } 224 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698