blob: 3eb6fa6300b9b924d74c8f18a9fd1cf8871843f5 [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-func-skip-early-err.case
3// - src/annex-b-fns/eval-func/direct-switch-dflt.template
4/*---
5description: Extension not observed when creation of variable binding would produce an early error (Funtion declaration in the `default` clause of a `switch` statement in eval code in the global scope)
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 ii. If replacing the FunctionDeclaration f with a VariableStatement that
14 has F as a BindingIdentifier would not produce any Early Errors for
15 body, then
16 [...]
17---*/
18var init, after;
19
20(function() {
21 eval(
22 'let f = 123;\
23 init = f;switch (1) {' +
24 ' default:' +
25 ' function f() { }' +
26 '}\
27 after = f;'
28 );
29}());
30
31assert.sameValue(init, 123, 'binding is not initialized to `undefined`');
32assert.sameValue(after, 123, 'value is not updated following evaluation');