File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Sources/SwiftDriver/IncrementalCompilation/ModuleDependencyGraphParts Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,13 @@ import Foundation
12
12
import TSCBasic
13
13
14
14
@_spi ( Testing) public struct InputDependencySourceMap : Equatable {
15
+ public typealias BiMap = BidirectionalMap < TypedVirtualPath , DependencySource >
15
16
16
17
/// Maps input files (e.g. .swift) to and from the DependencySource object.
17
18
///
18
- // This map caches the same information as in the `OutputFileMap`, but it
19
- // optimizes the reverse lookup, and includes path interning via `DependencySource`.
20
- // Once created, it does not change.
21
-
22
- public typealias BiMap = BidirectionalMap < TypedVirtualPath , DependencySource >
19
+ /// This map caches the same information as in the `OutputFileMap`, but it
20
+ /// optimizes the reverse lookup, and includes path interning via `DependencySource`.
21
+ /// Once created, it does not change.
23
22
@_spi ( Testing) public let biMap : BiMap
24
23
25
24
/// Based on entries in the `OutputFileMap`, create the bidirectional map to map each source file
You can’t perform that action at this time.
0 commit comments