blob: 6271c81786135a08da0f9813e1946c5bc309ec41 [file] [log] [blame]
// This file was procedurally generated from the following sources:
// - src/annex-b-fns/eval-func-existing-var-no-init.case
// - src/annex-b-fns/eval-func/direct-block.template
/*---
description: Existing variable binding is not modified (Block statement in eval code containing a function declaration)
esid: sec-web-compat-evaldeclarationinstantiation
flags: [generated, noStrict]
info: |
B.3.3.3 Changes to EvalDeclarationInstantiation
[...]
a. If declaredFunctionOrVarNames does not contain F, then
[...]
---*/
var init;
(function() {
eval(
'var f = 123;\
init = f;{ function f() { } }'
);
}());
assert.sameValue(init, 123);