We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
func testMultiTrailingClosure() { var input = Parser(""" foo { _ in }anotherClosure: { _ in } """) let call = ExprSyntax.parse(from: &input) let formatted = call.formatted() assertStringsEqualWithDiff(formatted.description, """ foo { _ in } anotherClosure: { _ in } """) }
Produces:
failed - Actual output (+) differed from expected output (-): –foo { _ in –} anotherClosure: { _ in +foo { _ in +}anotherClosure: { _ in }
ie. extra space after in and no space after }.
in
}
The text was updated successfully, but these errors were encountered:
rdar://107454729
Sorry, something went wrong.
Fixed by #1569.
Add testcase for swiftlang#1472
5bf3d74
018379c
44d7521
fb1163f
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
Produces:
ie. extra space after
in
and no space after}
.The text was updated successfully, but these errors were encountered: