In some cases, a multi-line expression in a match arm does not get braces, violating the spec.
This leads to code like this:
pat => fun(
a,
b,
c,
d,
)
We also don't generate code like this:
if foo { fun(
a,
b,
c,
d,
)}
so it seems odd to do that for match arms.
In some cases, a multi-line expression in a match arm does not get braces, violating the spec.
This leads to code like this:
We also don't generate code like this:
so it seems odd to do that for match arms.