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.
1 parent b30dedf commit 09dcf74Copy full SHA for 09dcf74
Sources/SwiftParser/Expressions.swift
@@ -516,7 +516,8 @@ extension Parser {
516
// 'repeat' is the start of a pack expansion expression.
517
if (self.at(.repeatKeyword)) {
518
return RawExprSyntax(
519
- parsePackExpansionExpr(flavor, pattern: pattern))
+ parsePackExpansionExpr(flavor, pattern: pattern)
520
+ )
521
}
522
523
switch self.at(anyIn: ExpressionPrefixOperator.self) {
@@ -1389,7 +1390,8 @@ extension Parser {
1389
1390
return RawPackExpansionExprSyntax(
1391
repeatKeyword: repeatKeyword,
1392
patternExpr: patternExpr,
- arena: self.arena)
1393
+ arena: self.arena
1394
1395
1396
1397
0 commit comments