From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../eval-block-arrow-function-functionbody.js | 59 ++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 js/src/tests/test262/language/statementList/eval-block-arrow-function-functionbody.js (limited to 'js/src/tests/test262/language/statementList/eval-block-arrow-function-functionbody.js') diff --git a/js/src/tests/test262/language/statementList/eval-block-arrow-function-functionbody.js b/js/src/tests/test262/language/statementList/eval-block-arrow-function-functionbody.js new file mode 100644 index 0000000000..de83704b74 --- /dev/null +++ b/js/src/tests/test262/language/statementList/eval-block-arrow-function-functionbody.js @@ -0,0 +1,59 @@ +// This file was procedurally generated from the following sources: +// - src/statementList/arrow-function-functionbody.case +// - src/statementList/default/eval-block.template +/*--- +description: Arrow Function with a Function Body (Eval production of StatementList starting with a BlockStatement) +esid: prod-StatementList +features: [arrow-function] +flags: [generated] +info: | + StatementList: + StatementListItem + StatementList StatementListItem + + StatementListItem: + Statement + Declaration + + Statement: + BlockStatement + + BlockStatement: + Block + + Block: + { StatementList_opt } + + Statement: + BlockStatement + VariableStatement + EmptyStatement + ExpressionStatement + ... + + ExpressionStatement: + [lookahead ∉ { {, function, async [no LineTerminator here] function, class, let [ }] + Expression ; + + ... + + AssignmentExpression: + ConditionalExpression + [+Yield]YieldExpression + ArrowFunction + + ArrowFunction: + ArrowParameters [no LineTerminator here] => ConciseBody + + ConciseBody: + [lookahead ≠ {] AssignmentExpression + { FunctionBody } + +---*/ + + +var result = eval('{}() => { return 42; };'); + +assert.sameValue(result(), 42); + +reportCompare(0, 0); -- cgit v1.2.3