| 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: --harmony-sloppy --harmony-sloppy-let | |
| 6 | |
| 7 // let is usable as a variable with var, but not let or ES6 const | 5 // let is usable as a variable with var, but not let or ES6 const |
| 8 | 6 |
| 9 (function (){ | 7 (function (){ |
| 10 assertEquals(undefined, let); | 8 assertEquals(undefined, let); |
| 11 | 9 |
| 12 var let; | 10 var let; |
| 13 | 11 |
| 14 let = 5; | 12 let = 5; |
| 15 assertEquals(5, let); | 13 assertEquals(5, let); |
| 16 | 14 |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 })(); | 48 })(); |
| 51 | 49 |
| 52 (function() { | 50 (function() { |
| 53 function let() { | 51 function let() { |
| 54 return 1; | 52 return 1; |
| 55 } | 53 } |
| 56 assertEquals(1, let()); | 54 assertEquals(1, let()); |
| 57 })() | 55 })() |
| 58 | 56 |
| 59 assertThrows('for (let of []) {}', SyntaxError); | 57 assertThrows('for (let of []) {}', SyntaxError); |
| OLD | NEW |