blob: 98efe5c2bd46f3efbf391b0a1a92a28ef6399575 [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-no-skip-try.case
3// - src/annex-b-fns/func/if-decl-else-stmt.template
4/*---
5description: 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)
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 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}());