Open
Description
In the following two cases, we appear to add too much indentation in front of the return
.
let source: AccessorDeclSyntax = """
get {
return 1
}
"""
assertFormatted(
tree: source,
expected: """
get {
return 1
}
"""
)
let source: AccessorDeclSyntax = """
get {
return 1
}
"""
assertFormatted(
tree: source,
expected: """
get {
return 1
}
"""
)