2016-04-18 22:18:34 +02:00
|
|
|
// This file was procedurally generated from the following sources:
|
|
|
|
// - src/annex-b-fns/func-exsting-var-no-init.case
|
|
|
|
// - src/annex-b-fns/func/block.template
|
|
|
|
/*---
|
|
|
|
description: Existing variable binding is not modified (Block statement in function scope containing a function declaration)
|
|
|
|
esid: sec-web-compat-functiondeclarationinstantiation
|
|
|
|
es6id: B.3.3.1
|
|
|
|
flags: [generated, noStrict]
|
2016-07-12 01:37:42 +02:00
|
|
|
info: |
|
2016-04-18 22:18:34 +02:00
|
|
|
B.3.3.1 Changes to FunctionDeclarationInstantiation
|
2016-07-12 01:37:42 +02:00
|
|
|
|
2016-04-18 22:18:34 +02:00
|
|
|
[...]
|
|
|
|
2. If instantiatedVarNames does not contain F, then
|
|
|
|
[...]
|
|
|
|
---*/
|
|
|
|
var init;
|
|
|
|
|
|
|
|
(function() {
|
|
|
|
var f = 123;
|
|
|
|
init = f;
|
|
|
|
|
|
|
|
{
|
|
|
|
function f() { }
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}());
|
|
|
|
|
|
|
|
assert.sameValue(init, 123);
|