== should format allowing comment on header line ==
const test = ( // test
    test
);

[expect]
const test = ( // test
    test
);

== should keep comment inside ==
const test = (
    // test
    test
);

[expect]
const test = (
    // test
    test
);

== should keep paren expr on left hand side of assignment ==
(x.test as unknown) = 6;

[expect]
(x.test as unknown) = 6;

== should ignore paren exprs within paren exprs ==
(((test)));
(
    // test
    ((test))
);

[expect]
test;
(
    // test
    test
);
