~~ method.bracePosition: maintain, lineWidth: 40 ~~
== should maintain the position for the brace position when on same line ==
class Test {
    method() {
    }
}

[expect]
class Test {
    method() {
    }
}

== should maintain the position for the brace position when on a new line ==
class Test {
    method()
    {
    }
}

[expect]
class Test {
    method()
    {
    }
}

== should maintain the position for the brace position when multi-line and on the same line ==
class Test {
    method(): string | number | testingthis {
    }
}

[expect]
class Test {
    method():
        | string
        | number
        | testingthis {
    }
}

== should maintain the position for the brace position when multi-line and on the next line ==
class Test {
    method(): string | number | testingthis
    {
    }
}

[expect]
class Test {
    method():
        | string
        | number
        | testingthis
    {
    }
}
