~~ lineWidth: 80 ~~
== should format params with a hanging indent by default ==
function test(here, are, some, parens, that, will, go, over, the, limit, of, width, source, file) {
}

[expect]
function test(here, are, some, parens, that, will, go, over, the, limit, of,
    width, source, file)
{
}

== should revert a hanging indent to a single line if short enough ==
function test(p1, p2,
    p3) {
}

[expect]
function test(p1, p2, p3) {
}
