global-block-decl-eval-global-existing-var-update.js (1262B)
1 // This file was procedurally generated from the following sources: 2 // - src/annex-b-fns/eval-global-existing-var-update.case 3 // - src/annex-b-fns/eval-global/direct-block.template 4 /*--- 5 description: Variable-scoped binding is updated following evaluation (Block statement in eval code containing a function declaration) 6 esid: sec-web-compat-evaldeclarationinstantiation 7 flags: [generated, noStrict] 8 info: | 9 B.3.3.3 Changes to EvalDeclarationInstantiation 10 11 [...] 12 b. When the FunctionDeclaration f is evaluated, perform the following steps 13 in place of the FunctionDeclaration Evaluation algorithm provided in 14 14.1.21: 15 i. Let genv be the running execution context's VariableEnvironment. 16 ii. Let genvRec be genv's EnvironmentRecord. 17 iii. Let benv be the running execution context's LexicalEnvironment. 18 iv. Let benvRec be benv's EnvironmentRecord. 19 v. Let fobj be ! benvRec.GetBindingValue(F, false). 20 vi. Perform ? genvRec.SetMutableBinding(F, fobj, false). 21 vii. Return NormalCompletion(empty). 22 ---*/ 23 24 eval( 25 '{ function f() { return "function declaration"; } }' 26 ); 27 28 assert.sameValue(typeof f, 'function'); 29 assert.sameValue(f(), 'function declaration'); 30 31 var f = 123; 32 33 reportCompare(0, 0);