Skip to content

Commit 0be9c62

Browse files
committed
Fix formatting
1 parent d0a35c5 commit 0be9c62

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

Sources/SwiftSyntax/SwiftSyntaxCompatibility.swift

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,20 @@ public extension DeclGroupSyntax {
5050
}
5151
}
5252

53-
5453
public extension EffectSpecifiersSyntax {
5554
@available(*, deprecated, message: "use throwsClause.throwsSpecifier")
5655
var throwsSpecifier: TokenSyntax? {
5756
throwsClause?.throwsSpecifier
5857
}
5958
}
6059

61-
6260
public extension FunctionEffectSpecifiersSyntax {
6361
@available(*, deprecated, message: "use throwsClause instead of throwsSpecifier")
6462
init(
65-
leadingTrivia: Trivia? = nil,
66-
asyncSpecifier: TokenSyntax? = nil,
67-
throwsSpecifier: TokenSyntax? = nil,
68-
trailingTrivia: Trivia? = nil
63+
leadingTrivia: Trivia? = nil,
64+
asyncSpecifier: TokenSyntax? = nil,
65+
throwsSpecifier: TokenSyntax? = nil,
66+
trailingTrivia: Trivia? = nil
6967
) {
7068
self.init(
7169
leadingTrivia: leadingTrivia,

0 commit comments

Comments
 (0)