Skip to content

Commit 24f4274

Browse files
committed
Formatting
1 parent b769363 commit 24f4274

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Sources/SwiftParser/Expressions.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,8 @@ extension Parser {
320320
let rhs: RawExprSyntax?
321321
if colon.isMissing {
322322
if let previousTokenKind = currentToken.cursor.previousTokenKind,
323-
self.at(TokenSpec(previousTokenKind)) {
323+
self.at(TokenSpec(previousTokenKind))
324+
{
324325
rhs = nil
325326
} else {
326327
rhs = RawExprSyntax(RawMissingExprSyntax(arena: self.arena))

0 commit comments

Comments
 (0)