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/eval-func-exsting-block-fn-no-init.case |
| 3 | // - src/annex-b-fns/eval-func/direct-if-decl-else-decl-b.template |
| 4 | /*--- |
| 5 | description: Does not re-initialize binding created by similar forms (IfStatement with a declaration in both statement positions in eval code) |
| 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.3 Changes to EvalDeclarationInstantiation |
| 20 | |
| 21 | [...] |
| 22 | a. If declaredFunctionOrVarNames does not contain F, then |
| 23 | [...] |
| 24 | ---*/ |
| 25 | var init; |
| 26 | |
| 27 | (function() { |
| 28 | eval( |
| 29 | 'init = f;\ |
| 30 | \ |
| 31 | {\ |
| 32 | function f() {}\ |
| 33 | }if (false) function _f() {} else function f() { }' |
| 34 | ); |
| 35 | }()); |
| 36 | |
| 37 | assert.sameValue(init, undefined); |