OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // Flags: --no-legacy-const --harmony-sloppy --harmony-sloppy-let |
| 6 // Flags: --harmony-sloppy-function --harmony-destructuring |
| 7 |
| 8 // Test Annex B 3.3 semantics for functions declared in blocks in sloppy mode. |
| 9 // http://www.ecma-international.org/ecma-262/6.0/#sec-block-level-function-decl
arations-web-legacy-compatibility-semantics |
| 10 |
| 11 (function overridingLocalFunction() { |
| 12 var x = []; |
| 13 assertEquals('function', typeof f); |
| 14 function f() { |
| 15 x.push(1); |
| 16 } |
| 17 f(); |
| 18 { |
| 19 f(); |
| 20 function f() { |
| 21 x.push(2); |
| 22 } |
| 23 f(); |
| 24 } |
| 25 f(); |
| 26 { |
| 27 f(); |
| 28 function f() { |
| 29 x.push(3); |
| 30 } |
| 31 f(); |
| 32 } |
| 33 f(); |
| 34 assertArrayEquals([1, 2, 2, 2, 3, 3, 3], x); |
| 35 })(); |
| 36 |
| 37 (function newFunctionBinding() { |
| 38 var x = []; |
| 39 assertEquals('undefined', typeof f); |
| 40 { |
| 41 f(); |
| 42 function f() { |
| 43 x.push(2); |
| 44 } |
| 45 f(); |
| 46 } |
| 47 f(); |
| 48 { |
| 49 f(); |
| 50 function f() { |
| 51 x.push(3); |
| 52 } |
| 53 f(); |
| 54 } |
| 55 f(); |
| 56 assertArrayEquals([2, 2, 2, 3, 3, 3], x); |
| 57 })(); |
| 58 |
| 59 (function shadowingLetDoesntBind() { |
| 60 let f = 1; |
| 61 assertEquals(1, f); |
| 62 { |
| 63 let y = 3; |
| 64 function f() { |
| 65 y = 2; |
| 66 } |
| 67 f(); |
| 68 assertEquals(2, y); |
| 69 } |
| 70 assertEquals(1, f); |
| 71 })(); |
| 72 |
| 73 (function shadowingClassDoesntBind() { |
| 74 class f { } |
| 75 assertEquals('class f { }', f.toString()); |
| 76 { |
| 77 let y = 3; |
| 78 function f() { |
| 79 y = 2; |
| 80 } |
| 81 f(); |
| 82 assertEquals(2, y); |
| 83 } |
| 84 assertEquals('class f { }', f.toString()); |
| 85 })(); |
| 86 |
| 87 (function shadowingConstDoesntBind() { |
| 88 const f = 1; |
| 89 assertEquals(1, f); |
| 90 { |
| 91 let y = 3; |
| 92 function f() { |
| 93 y = 2; |
| 94 } |
| 95 f(); |
| 96 assertEquals(2, y); |
| 97 } |
| 98 assertEquals(1, f); |
| 99 })(); |
| 100 |
| 101 (function shadowingVarBinds() { |
| 102 var f = 1; |
| 103 assertEquals(1, f); |
| 104 { |
| 105 let y = 3; |
| 106 function f() { |
| 107 y = 2; |
| 108 } |
| 109 f(); |
| 110 assertEquals(2, y); |
| 111 } |
| 112 assertEquals('function', typeof f); |
| 113 })(); |
| 114 |
| 115 (function conditional() { |
| 116 if (true) { |
| 117 function f() { return 1; } |
| 118 } else { |
| 119 function f() { return 2; } |
| 120 } |
| 121 assertEquals(1, f()); |
| 122 |
| 123 if (false) { |
| 124 function g() { return 1; } |
| 125 } else { |
| 126 function g() { return 2; } |
| 127 } |
| 128 assertEquals(2, g()); |
| 129 })(); |
| 130 |
| 131 (function skipExecution() { |
| 132 { |
| 133 function f() { return 1; } |
| 134 } |
| 135 assertEquals(1, f()); |
| 136 { |
| 137 function f() { return 2; } |
| 138 } |
| 139 assertEquals(2, f()); |
| 140 L: { |
| 141 assertEquals(3, f()); |
| 142 break L; |
| 143 function f() { return 3; } |
| 144 } |
| 145 assertEquals(2, f()); |
| 146 })(); |
| 147 |
| 148 // Test that hoisting from blocks doesn't happen in global scope |
| 149 function globalUnhoisted() { return 0; } |
| 150 { |
| 151 function globalUnhoisted() { return 1; } |
| 152 } |
| 153 assertEquals(0, globalUnhoisted()); |
| 154 |
| 155 // Test that shadowing arguments is fine |
| 156 (function shadowArguments(x) { |
| 157 assertArrayEquals([1], arguments); |
| 158 { |
| 159 assertEquals('function', typeof arguments); |
| 160 function arguments() {} |
| 161 assertEquals('function', typeof arguments); |
| 162 } |
| 163 assertEquals('function', typeof arguments); |
| 164 })(1); |
| 165 |
| 166 // Shadow function parameter |
| 167 (function shadowParameter(x) { |
| 168 assertEquals(1, x); |
| 169 { |
| 170 function x() {} |
| 171 } |
| 172 assertEquals('function', typeof x); |
| 173 })(1); |
| 174 |
| 175 // Shadow function parameter |
| 176 (function shadowDefaultParameter(x = 0) { |
| 177 assertEquals(1, x); |
| 178 { |
| 179 function x() {} |
| 180 } |
| 181 // TODO(littledan): Once destructured parameters are no longer |
| 182 // let-bound, enable this assertion. This is the core of the test. |
| 183 // assertEquals('function', typeof x); |
| 184 })(1); |
| 185 |
| 186 assertThrows(function notInDefaultScope(x = y) { |
| 187 { |
| 188 function y() {} |
| 189 } |
| 190 assertEquals('function', typeof y); |
| 191 assertEquals(x, undefined); |
| 192 }, ReferenceError); |
OLD | NEW |