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 75ad955 commit afa7060Copy full SHA for afa7060
Sources/SwiftParser/Expressions.swift
@@ -874,7 +874,7 @@ extension Parser {
874
}
875
} while lookahead.at(.poundIf) && lookahead.hasProgressed(&loopProgress)
876
877
- guard lookahead.atStartOfPostfixExprSuffix() else {
+ guard lookahead.isAtStartOfPostfixExprSuffix() else {
878
break
879
880
@@ -2487,7 +2487,7 @@ extension Parser.Lookahead {
2487
extension Parser.Lookahead {
2488
// Helper function to see if we can parse member reference like suffixes
2489
// inside '#if'.
2490
- fileprivate mutating func atStartOfPostfixExprSuffix() -> Bool {
+ fileprivate mutating func isAtStartOfPostfixExprSuffix() -> Bool {
2491
guard self.at(.period) else {
2492
return false
2493
0 commit comments