OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 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-function --nolegacy-const | 5 // Flags: --harmony-sloppy-function |
6 | 6 |
7 // In sloppy mode we allow function redeclarations within blocks for webcompat. | 7 // In sloppy mode we allow function redeclarations within blocks for webcompat. |
8 (function() { | 8 (function() { |
9 assertEquals(undefined, f); // Annex B | 9 assertEquals(undefined, f); // Annex B |
10 if (true) { | 10 if (true) { |
11 assertEquals(2, f()); | 11 assertEquals(2, f()); |
12 function f() { return 1 } | 12 function f() { return 1 } |
13 assertEquals(2, f()); | 13 assertEquals(2, f()); |
14 function f() { return 2 } | 14 function f() { return 2 } |
15 assertEquals(2, f()); | 15 assertEquals(2, f()); |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 assertEquals(undefined, f); // Annex B | 71 assertEquals(undefined, f); // Annex B |
72 if (true) { | 72 if (true) { |
73 assertEquals(undefined, f); | 73 assertEquals(undefined, f); |
74 { function f() { return 1 } } | 74 { function f() { return 1 } } |
75 assertEquals(1, f()); | 75 assertEquals(1, f()); |
76 { function f() { return 2 } } | 76 { function f() { return 2 } } |
77 assertEquals(2, f()); | 77 assertEquals(2, f()); |
78 } | 78 } |
79 assertEquals(2, f()); // Annex B | 79 assertEquals(2, f()); // Annex B |
80 })(); | 80 })(); |
OLD | NEW |