File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Sources/SwiftDriver/IncrementalCompilation
ModuleDependencyGraphParts Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -842,7 +842,7 @@ extension ModuleDependencyGraph {
842
842
}
843
843
}
844
844
845
- graph. inputDependencySourceMap. enumerateToSerialize { input, dependencySource in
845
+ graph. inputDependencySourceMap. enumerateToSerializePriors { input, dependencySource in
846
846
self . addIdentifier ( input. file. name)
847
847
self . addIdentifier ( dependencySource. file. name)
848
848
}
@@ -987,7 +987,7 @@ extension ModuleDependencyGraph {
987
987
}
988
988
}
989
989
}
990
- graph. inputDependencySourceMap. enumerateToSerialize {
990
+ graph. inputDependencySourceMap. enumerateToSerializePriors {
991
991
input, dependencySource in
992
992
serializer. stream. writeRecord ( serializer. abbreviations [ . mapNode] !) {
993
993
$0. append ( RecordID . mapNode)
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ extension InputDependencySourceMap {
41
41
biMap [ source]
42
42
}
43
43
44
- @_spi ( Testing) public func enumerateToSerialize (
44
+ @_spi ( Testing) public func enumerateToSerializePriors (
45
45
_ eachFn: ( TypedVirtualPath , DependencySource ) -> Void
46
46
) {
47
47
biMap. forEach ( eachFn)
You can’t perform that action at this time.
0 commit comments