File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Sources/SwiftDriver/IncrementalCompilation
ModuleDependencyGraphParts Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -345,7 +345,7 @@ extension ModuleDependencyGraph {
345
345
where Nodes. Element == Node
346
346
{
347
347
for node in nodes {
348
- node. beUntraced ( )
348
+ node. setUntraced ( )
349
349
}
350
350
}
351
351
}
Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ extension ModuleDependencyGraph {
62
62
// MARK: - trace status
63
63
extension ModuleDependencyGraph . Node {
64
64
var isUntraced : Bool { !isTraced }
65
- func beTraced ( ) { isTraced = true }
66
- func beUntraced ( ) { isTraced = false }
65
+ func setTraced ( ) { isTraced = true }
66
+ func setUntraced ( ) { isTraced = false }
67
67
}
68
68
69
69
// MARK: - comparing, hashing
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ extension ModuleDependencyGraph.Tracer {
73
73
of definition: ModuleDependencyGraph . Node
74
74
) {
75
75
guard definition. isUntraced else { return }
76
- definition. beTraced ( )
76
+ definition. setTraced ( )
77
77
78
78
tracedUses. append ( definition)
79
79
You can’t perform that action at this time.
0 commit comments