~~ semiColons: asi ~~
== should insert semi-colons at the start of lines beginning with a parenthesis ==
(
    // test
    test
);

[expect]
;(
    // test
    test
)

== should insert semi-colons at the start of lines beginning with a template literal ==
`testing`;

[expect]
;`testing`

== should insert semi-colons at the start of lines beginning with a bracket ==
[1, 2, 3].forEach(bar);

[expect]
;[1, 2, 3].forEach(bar)
