test262/test/annexB/language/eval-code/indirect/global-switch-dflt-eval-glo...

27 lines
755 B
JavaScript
Raw Normal View History

2016-04-18 22:18:34 +02:00
// This file was procedurally generated from the following sources:
2017-03-28 02:49:48 +02:00
// - src/annex-b-fns/eval-global-existing-block-fn-no-init.case
2016-04-18 22:18:34 +02:00
// - src/annex-b-fns/eval-global/indirect-switch-dflt.template
/*---
description: Does not re-initialize binding created by similar forms (Funtion declaration in the `default` clause of a `switch` statement in eval code in the global scope)
esid: sec-web-compat-evaldeclarationinstantiation
flags: [generated, noStrict]
info: |
2016-04-18 22:18:34 +02:00
B.3.3.3 Changes to EvalDeclarationInstantiation
2016-04-18 22:18:34 +02:00
[...]
a. If declaredFunctionOrVarNames does not contain F, then
[...]
---*/
(0,eval)(
'assert.sameValue(f, undefined);\
\
{\
function f() {}\
}switch (1) {' +
' default:' +
' function f() { }' +
'}\
'
);