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

[expect]
const o = {
    test(
        testing,
        thisOut,
        byExceeding,
        theLineWidth
    ) {
    }
};

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

[expect]
const o = {
    test(testing, this) {
    }
};
