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 4b5105d commit 202907dCopy full SHA for 202907d
SwiftCompilerSources/Sources/AST/Declarations.swift
@@ -124,6 +124,8 @@ final public class TopLevelCodeDecl: Decl {}
124
125
final public class ImportDecl: Decl {}
126
127
+final public class UsingDecl: Decl {}
128
+
129
final public class PrecedenceGroupDecl: Decl {}
130
131
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