~~ functionDeclaration.bracePosition: maintain, parameters.preferHanging: always, lineWidth: 30 ~~
== should maintain the position for the brace position when on same line ==
function t() {
}

[expect]
function t() {
}

== should maintain the position for the brace position when on a new line ==
function t()
{
}

[expect]
function t()
{
}

== should maintain the position for the brace position when hanging and on the same line ==
function t(param, otherParamst) {
}

[expect]
function t(param,
    otherParamst) {
}

== should maintain the position for the brace position when hanging and on the next line ==
function t(param, otherParamst)
{
}

[expect]
function t(param,
    otherParamst)
{
}
