| OLD | NEW |
| 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 'use strict'; | 6 // Flags: --no-legacy-const --harmony-sloppy |
| 7 | 7 |
| 8 let xxx = 1; | 8 let xxx = 1; |
| 9 let f = undefined; | 9 let f = undefined; |
| 10 { | 10 { |
| 11 let inner_x = xxx; | 11 let inner_x = xxx; |
| 12 f = function() { return inner_x; }; | 12 f = function() { return inner_x; }; |
| 13 } | 13 } |
| 14 | 14 |
| 15 assertSame(1, f()); | 15 assertSame(1, f()); |
| 16 | 16 |
| 17 xxx = 42; | 17 xxx = 42; |
| 18 { | 18 { |
| 19 f = function() { return inner_x1; }; | 19 f = function() { return inner_x1; }; |
| 20 let inner_x1 = xxx; | 20 let inner_x1 = xxx; |
| 21 } | 21 } |
| 22 | 22 |
| 23 assertSame(42, f()); | 23 assertSame(42, f()); |
| 24 | 24 |
| 25 xxx = 31; | 25 xxx = 31; |
| 26 { | 26 { |
| 27 let inner_x1 = xxx; | 27 let inner_x1 = xxx; |
| 28 try { | 28 try { |
| 29 throw new Error(); | 29 throw new Error(); |
| 30 } catch (e) { | 30 } catch (e) { |
| 31 f = function() { return inner_x1; }; | 31 f = function() { return inner_x1; }; |
| 32 } | 32 } |
| 33 } | 33 } |
| 34 assertSame(31, f()); | 34 assertSame(31, f()); |
| OLD | NEW |