keith_miller@apple.com | bcc77f2 | 2016-07-15 06:03:25 +0000 | [diff] [blame] | 1 | // This file was procedurally generated from the following sources: |
| 2 | // - src/annex-b-fns/func-no-skip-try.case |
| 3 | // - src/annex-b-fns/func/if-decl-else-stmt.template |
| 4 | /*--- |
| 5 | description: Extension is observed when creation of variable binding would not produce an early error (try statement) (IfStatement with a declaration in the first statement position in function scope) |
| 6 | esid: sec-functiondeclarations-in-ifstatement-statement-clauses |
| 7 | es6id: B.3.4 |
| 8 | flags: [generated, noStrict] |
| 9 | info: | |
| 10 | The following rules for IfStatement augment those in 13.6: |
| 11 | |
| 12 | IfStatement[Yield, Return]: |
| 13 | if ( Expression[In, ?Yield] ) FunctionDeclaration[?Yield] else Statement[?Yield, ?Return] |
| 14 | if ( Expression[In, ?Yield] ) Statement[?Yield, ?Return] else FunctionDeclaration[?Yield] |
| 15 | if ( Expression[In, ?Yield] ) FunctionDeclaration[?Yield] else FunctionDeclaration[?Yield] |
| 16 | if ( Expression[In, ?Yield] ) FunctionDeclaration[?Yield] |
| 17 | |
| 18 | |
| 19 | B.3.3.1 Changes to FunctionDeclarationInstantiation |
| 20 | |
| 21 | [...] |
| 22 | 2. If instantiatedVarNames does not contain F, then |
| 23 | a. Perform ! varEnvRec.CreateMutableBinding(F, false). |
| 24 | b. Perform varEnvRec.InitializeBinding(F, undefined). |
| 25 | c. Append F to instantiatedVarNames. |
| 26 | [...] |
| 27 | |
| 28 | B.3.5 VariableStatements in Catch Blocks |
| 29 | |
| 30 | [...] |
| 31 | - It is a Syntax Error if any element of the BoundNames of CatchParameter |
| 32 | also occurs in the VarDeclaredNames of Block unless CatchParameter is |
| 33 | CatchParameter:BindingIdentifier and that element is only bound by a |
| 34 | VariableStatement, the VariableDeclarationList of a for statement, or the |
| 35 | ForBinding of a for-in statement. |
| 36 | ---*/ |
| 37 | |
| 38 | (function() { |
| 39 | assert.sameValue( |
| 40 | f, undefined, 'Initialized binding created prior to evaluation' |
| 41 | ); |
| 42 | |
| 43 | try { |
| 44 | throw null; |
| 45 | } catch (f) { |
| 46 | |
| 47 | if (true) function f() { return 123; } else ; |
| 48 | |
| 49 | } |
| 50 | |
| 51 | assert.sameValue( |
| 52 | typeof f, |
| 53 | 'function', |
| 54 | 'binding value is updated following evaluation' |
| 55 | ); |
| 56 | assert.sameValue(f(), 123); |
| 57 | }()); |