2019-07-16 23:51:25 +02:00
|
|
|
// This file was procedurally generated from the following sources:
|
|
|
|
// - src/statementList/let-declaration.case
|
|
|
|
// - src/statementList/default/eval-function-declaration.template
|
|
|
|
/*---
|
|
|
|
description: LexicalDeclaration using Let (Eval production of StatementList starting with a Function Declaration)
|
|
|
|
esid: prod-StatementList
|
|
|
|
flags: [generated]
|
|
|
|
info: |
|
|
|
|
StatementList:
|
|
|
|
StatementListItem
|
|
|
|
StatementList StatementListItem
|
|
|
|
|
|
|
|
StatementListItem:
|
|
|
|
Statement
|
|
|
|
Declaration
|
|
|
|
|
|
|
|
Declaration:
|
|
|
|
HoistableDeclaration
|
|
|
|
|
|
|
|
FunctionDeclaration:
|
|
|
|
function BindingIdentifier ( FormalParameters ) { FunctionBody }
|
|
|
|
|
|
|
|
Declaration:
|
|
|
|
LexicalDeclaration
|
|
|
|
|
|
|
|
LexicalDeclaration:
|
|
|
|
LetOrConst BindingList ;
|
|
|
|
|
|
|
|
BindingList:
|
|
|
|
LexicalBinding
|
|
|
|
BindingList , LexicalBinding
|
|
|
|
---*/
|
|
|
|
|
|
|
|
|
2021-10-05 21:28:48 +02:00
|
|
|
var result = eval('function fn() {}let a, b = 42, c;b;');
|
2019-07-16 23:51:25 +02:00
|
|
|
|
|
|
|
assert.sameValue(result, 42);
|