Skip to content

Commit 8bcd820

Browse files
authored
fix: arrow-body-style crash with single-token body (#19379)
1 parent 15ac0e1 commit 8bcd820

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

lib/rules/arrow-body-style.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ module.exports = {
143143

144144
if (blockBody.length === 0) {
145145
messageId = "unexpectedEmptyBlock";
146-
} else if (blockBody.length > 1) {
146+
} else if (blockBody.length > 1 || blockBody[0].type !== "ReturnStatement") {
147147
messageId = "unexpectedOtherBlock";
148148
} else if (blockBody[0].argument === null) {
149149
messageId = "unexpectedSingleBlock";

tests/lib/rules/arrow-body-style.js

+8
Original file line numberDiff line numberDiff line change
@@ -534,6 +534,14 @@ ruleTester.run("arrow-body-style", rule, {
534534
{ line: 1, column: 27, type: "ArrowFunctionExpression", messageId: "unexpectedOtherBlock" }
535535
]
536536
},
537+
{
538+
code: "var foo = () => { bar };",
539+
output: null, // not fixed
540+
options: ["never"],
541+
errors: [
542+
{ line: 1, column: 17, type: "ArrowFunctionExpression", messageId: "unexpectedOtherBlock" }
543+
]
544+
},
537545
{
538546
code: "var foo = () => { return 0; };",
539547
output: "var foo = () => 0;",

0 commit comments

Comments
 (0)