Skip to content

Commit 3889b96

Browse files
add a new 'namespace' symbol kind (#65)
rdar://117904480
1 parent fb0c2d5 commit 3889b96

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Sources/SymbolKit/SymbolGraph/Symbol/KindIdentifier.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ extension SymbolGraph.Symbol {
4646
public static let macro = KindIdentifier(rawValue: "macro")
4747

4848
public static let method = KindIdentifier(rawValue: "method")
49-
49+
50+
public static let namespace = KindIdentifier(rawValue: "namespace")
51+
5052
public static let property = KindIdentifier(rawValue: "property")
5153

5254
public static let `protocol` = KindIdentifier(rawValue: "protocol")
@@ -108,6 +110,7 @@ extension SymbolGraph.Symbol {
108110
Self.ivar.rawValue: .ivar,
109111
Self.macro.rawValue: .macro,
110112
Self.method.rawValue: .method,
113+
Self.namespace.rawValue: .namespace,
111114
Self.property.rawValue: .property,
112115
Self.protocol.rawValue: .protocol,
113116
Self.snippet.rawValue: .snippet,

0 commit comments

Comments
 (0)