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.
using
1 parent 8da356a commit c38cf0fCopy full SHA for c38cf0f
SwiftCompilerSources/Sources/AST/Declarations.swift
@@ -117,6 +117,8 @@ final public class TopLevelCodeDecl: Decl {}
117
118
final public class ImportDecl: Decl {}
119
120
+final public class UsingDecl: Decl {}
121
+
122
final public class PrecedenceGroupDecl: Decl {}
123
124
final public class MissingDecl: Decl {}
SwiftCompilerSources/Sources/AST/Registration.swift
@@ -36,6 +36,7 @@ public func registerAST() {
36
registerDecl(ExtensionDecl.self)
37
registerDecl(TopLevelCodeDecl.self)
38
registerDecl(ImportDecl.self)
39
+ registerDecl(UsingDecl.self)
40
registerDecl(PrecedenceGroupDecl.self)
41
registerDecl(MissingDecl.self)
42
registerDecl(MissingMemberDecl.self)
0 commit comments