File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Sources/SymbolGraphBuilder/Sources Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -115,6 +115,7 @@ extension SSGC.DocumentationSources
115
115
{
116
116
$0 + $1. declarations. reduce ( 0 ) { $0 + $1. decls. count }
117
117
} )
118
+ re-exports : \( moduleIndexes. reduce ( 0 ) { $0 + $1. reexports. count } )
118
119
extensions : \( moduleIndexes. reduce ( 0 ) { $0 + $1. extensions. count } )
119
120
""" )
120
121
}
@@ -169,7 +170,11 @@ extension SSGC.DocumentationSources
169
170
Linked documentation!
170
171
time loading sources : \( profiler. loadingSources)
171
172
time linking : \( profiler. linking)
172
- symbols : \( graph. decls. symbols. count)
173
+ symbols : \( graph. decls. symbols. count)
174
+ redirects : \( graph. decls. nodes. reduce ( 0 )
175
+ {
176
+ $0 + $1. exporters. count
177
+ } )
173
178
""" )
174
179
175
180
return graph
You can’t perform that action at this time.
0 commit comments