global-if-stmt-else-decl-eval-global-init.js (1453B)
1 // This file was procedurally generated from the following sources: 2 // - src/annex-b-fns/eval-global-init.case 3 // - src/annex-b-fns/eval-global/direct-if-stmt-else-decl.template 4 /*--- 5 description: Variable binding is initialized to `undefined` in outer scope (IfStatement with a declaration in the second statement position in eval code) 6 esid: sec-functiondeclarations-in-ifstatement-statement-clauses 7 flags: [generated, noStrict] 8 includes: [fnGlobalObject.js, propertyHelper.js] 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 i. If varEnvRec is a global Environment Record, then 23 i. Perform ? varEnvRec.CreateGlobalFunctionBinding(F, undefined, true). 24 [...] 25 26 ---*/ 27 28 eval( 29 'var global = fnGlobalObject();\ 30 assert.sameValue(f, undefined, "binding is initialized to `undefined`");\ 31 \ 32 verifyProperty(global, "f", {\ 33 enumerable: true,\ 34 writable: true,\ 35 configurable: true\ 36 });if (false) ; else function f() { }' 37 ); 38 39 reportCompare(0, 0);