File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Sources/SymbolKit/SymbolGraph/Symbol Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,9 @@ extension SymbolGraph.Symbol {
46
46
public static let macro = KindIdentifier ( rawValue: " macro " )
47
47
48
48
public static let method = KindIdentifier ( rawValue: " method " )
49
-
49
+
50
+ public static let namespace = KindIdentifier ( rawValue: " namespace " )
51
+
50
52
public static let property = KindIdentifier ( rawValue: " property " )
51
53
52
54
public static let `protocol` = KindIdentifier ( rawValue: " protocol " )
@@ -108,6 +110,7 @@ extension SymbolGraph.Symbol {
108
110
Self . ivar. rawValue: . ivar,
109
111
Self . macro. rawValue: . macro,
110
112
Self . method. rawValue: . method,
113
+ Self . namespace. rawValue: . namespace,
111
114
Self . property. rawValue: . property,
112
115
Self . protocol. rawValue: . protocol,
113
116
Self . snippet. rawValue: . snippet,
You can’t perform that action at this time.
0 commit comments