summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statementList/fn-arrow-function-functionbody.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/statementList/fn-arrow-function-functionbody.js')
-rw-r--r--js/src/tests/test262/language/statementList/fn-arrow-function-functionbody.js54
1 files changed, 54 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statementList/fn-arrow-function-functionbody.js b/js/src/tests/test262/language/statementList/fn-arrow-function-functionbody.js
new file mode 100644
index 0000000000..1f153799ab
--- /dev/null
+++ b/js/src/tests/test262/language/statementList/fn-arrow-function-functionbody.js
@@ -0,0 +1,54 @@
+// This file was procedurally generated from the following sources:
+// - src/statementList/arrow-function-functionbody.case
+// - src/statementList/default/function-declaration.template
+/*---
+description: Arrow Function with a Function Body (Valid syntax of StatementList starting with a Function Declaration)
+esid: prod-StatementList
+features: [arrow-function]
+flags: [generated]
+info: |
+ StatementList:
+ StatementListItem
+ StatementList StatementListItem
+
+ StatementListItem:
+ Statement
+ Declaration
+
+ Declaration:
+ HoistableDeclaration
+
+ FunctionDeclaration:
+ function BindingIdentifier ( FormalParameters ) { FunctionBody }
+
+ 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 }
+
+---*/
+
+
+function fn() {}() => { return 42; };
+
+reportCompare(0, 0);