~~ tryStatement.bracePosition: maintain, lineWidth: 40 ~~
== should maintain the position for the brace position when on same line ==
try {
}
catch {
}
finally {
}

[expect]
try {
}
catch {
}
finally {
}

== should maintain the position for the brace position when on the next line ==
try
{
} catch
{
} finally
{
}

[expect]
try
{
}
catch
{
}
finally
{
}
