OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |