~~ functionDeclaration.forceMultiLineParameters: true, lineWidth: 40 ~~
== should force multi-line parameters when exceeding the line width ==
function test(testing, thisOut, byExceeding, theLineWidth) {
}

[expect]
function test(
    testing,
    thisOut,
    byExceeding,
    theLineWidth
) {
}

== should not be multi-line when not exceeding the line width ==
function test(testing, this) {
}

[expect]
function test(testing, this) {
}
