blob: 293b33ab631299a8e6463d6661317a454494ac35 [file] [log] [blame]
keith_miller@apple.combcc77f22016-07-15 06:03:25 +00001// This file was procedurally generated from the following sources:
2// - src/annex-b-fns/func-skip-early-err-for.case
3// - src/annex-b-fns/func/if-decl-else-stmt.template
4/*---
5description: Extension not observed when creation of variable binding would produce an early error (for statement) (IfStatement with a declaration in the first statement position in function scope)
6esid: sec-functiondeclarations-in-ifstatement-statement-clauses
7es6id: B.3.4
8flags: [generated, noStrict]
9info: |
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 ii. If replacing the FunctionDeclaration f with a VariableStatement that
23 has F as a BindingIdentifier would not produce any Early Errors for
24 func and F is not an element of BoundNames of argumentsList, then
25 [...]
26---*/
27
28(function() {
29 assert.throws(ReferenceError, function() {
30 f;
31 }, 'An initialized binding is not created prior to evaluation');
32 assert.sameValue(
33 typeof f,
34 'undefined',
35 'An uninitialized binding is not created prior to evaluation'
36 );
37
38 for (let f; ; ) {
39
40 if (true) function f() { } else ;
41
42 break;
43 }
44
45 assert.throws(ReferenceError, function() {
46 f;
47 }, 'An initialized binding is not created following evaluation');
48 assert.sameValue(
49 typeof f,
50 'undefined',
51 'An uninitialized binding is not created following evaluation'
52 );
53}());