summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/language/statementList/block-with-statment-arrow-function-functionbody.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/language/statementList/block-with-statment-arrow-function-functionbody.js')
-rw-r--r--js/src/tests/test262/language/statementList/block-with-statment-arrow-function-functionbody.js58
1 files changed, 58 insertions, 0 deletions
diff --git a/js/src/tests/test262/language/statementList/block-with-statment-arrow-function-functionbody.js b/js/src/tests/test262/language/statementList/block-with-statment-arrow-function-functionbody.js
new file mode 100644
index 0000000000..9357632fed
--- /dev/null
+++ b/js/src/tests/test262/language/statementList/block-with-statment-arrow-function-functionbody.js
@@ -0,0 +1,58 @@
+// This file was procedurally generated from the following sources:
+// - src/statementList/arrow-function-functionbody.case
+// - src/statementList/default/block-with-statement.template
+/*---
+description: Arrow Function with a Function Body (Valid syntax 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 }
+
+---*/
+
+
+// length is a label!
+{length: 3000}() => { return 42; };
+
+reportCompare(0, 0);