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 29e30f5 commit 40a0bf0Copy full SHA for 40a0bf0
Sources/SwiftParser/Specifiers.swift
@@ -635,6 +635,10 @@ extension Parser {
635
}
636
637
mutating func parseDeinitEffectSpecifiers() -> RawDeinitEffectSpecifiersSyntax? {
638
+ // Note that parseEffectSpecifiers() consumes deinit name as unexpected token
639
+ // But we want it to be handled on the higher level.
640
+ // So we parseEffectSpecifiers() is not reused here.
641
+
642
var unexpectedBeforeAsync: [RawSyntax?] = []
643
var asyncKeyword: RawTokenSyntax?
644
var unexpectedAfterAsync: [RawSyntax?] = []
0 commit comments