blob: 79a0c9cf9a9e5c70ef9ade91d9f7f431e4474d44 [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/eval-global-update.case
3// - src/annex-b-fns/eval-global/indirect-block.template
4/*---
5description: Variable binding value is updated following evaluation (Block statement in eval code containing a function declaration)
6esid: sec-web-compat-evaldeclarationinstantiation
7es6id: B.3.3.3
8flags: [generated, noStrict]
9info: |
10 B.3.3.3 Changes to EvalDeclarationInstantiation
11
12 [...]
13 b. When the FunctionDeclaration f is evaluated, perform the following steps
14 in place of the FunctionDeclaration Evaluation algorithm provided in
15 14.1.21:
16 i. Let genv be the running execution context's VariableEnvironment.
17 ii. Let genvRec be genv's EnvironmentRecord.
18 iii. Let benv be the running execution context's LexicalEnvironment.
19 iv. Let benvRec be benv's EnvironmentRecord.
20 v. Let fobj be ! benvRec.GetBindingValue(F, false).
21 vi. Perform ? genvRec.SetMutableBinding(F, fobj, false).
22 vii. Return NormalCompletion(empty).
23---*/
24
25(0,eval)(
26 '{ function f() { return "declaration"; } }assert.sameValue(typeof f, "function");\
27 assert.sameValue(f(), "declaration");'
28);