Skip to content

Commit 74da814

Browse files
authored
Merge pull request #238 from ahoppen/public-prefix-map
Make `original` and `replacement` members of `PathMapping` public
2 parents b9b92fe + 1c71476 commit 74da814

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/IndexStoreDB/IndexStoreDB.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ import Darwin.POSIX
2727

2828
public struct PathMapping: Equatable {
2929
/// Path prefix to be replaced, typically the canonical or hermetic path.
30-
let original: String
30+
public let original: String
3131

3232
/// Replacement path prefix, typically the path on the local machine.
33-
let replacement: String
33+
public let replacement: String
3434

3535
public init(original: String, replacement: String) {
3636
self.original = original

0 commit comments

Comments
 (0)