File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
Sources/SymbolKit/SymbolGraph/Symbol Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,8 @@ extension SymbolGraph.Symbol {
26
26
case method
27
27
case property
28
28
case `protocol`
29
+ case snippet
30
+ case snippetGroup
29
31
case `struct`
30
32
case `subscript`
31
33
case typeMethod
@@ -54,6 +56,8 @@ extension SymbolGraph.Symbol {
54
56
case . method: return " method "
55
57
case . property: return " property "
56
58
case . protocol: return " protocol "
59
+ case . snippet: return " snippet "
60
+ case . snippetGroup: return " snippetGroup "
57
61
case . struct: return " struct "
58
62
case . subscript: return " subscript "
59
63
case . typeMethod: return " type.method "
@@ -85,6 +89,8 @@ extension SymbolGraph.Symbol {
85
89
case " method " : return . method
86
90
case " property " : return . property
87
91
case " protocol " : return . protocol
92
+ case " snippet " : return . snippet
93
+ case " snippetGroup " : return . snippetGroup
88
94
case " struct " : return . struct
89
95
case " subscript " : return . subscript
90
96
case " type.method " : return . typeMethod
You can’t perform that action at this time.
0 commit comments