File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ add_library(SwiftDriver
29
29
Execution/ProcessProtocol.swift
30
30
Execution/llbuild.swift
31
31
32
- "Incremental Compilation/IncrementalCompilation .swift"
32
+ "Incremental Compilation/IncrementalCompilationState .swift"
33
33
"Incremental Compilation/InputIInfoMap.swift"
34
34
"Incremental Compilation/InputInfo.swift"
35
35
"Incremental Compilation/SourceFileDependencyGraph.swift"
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ public struct Driver {
143
143
public let moduleOutputInfo : ModuleOutputInfo
144
144
145
145
/// Code & data for incremental compilation
146
- public let incrementalCompilation : IncrementalCompilation
146
+ public let incrementalCompilationState : IncrementalCompilationState
147
147
148
148
/// The path of the SDK.
149
149
public var sdkPath : String ? {
@@ -337,7 +337,7 @@ public struct Driver {
337
337
debugInfoLevel: debugInfo. level, diagnosticsEngine: diagnosticEngine)
338
338
339
339
// Determine the state for incremental compilation
340
- self . incrementalCompilation = IncrementalCompilation (
340
+ self . incrementalCompilationState = IncrementalCompilationState (
341
341
& parsedOptions,
342
342
compilerMode: compilerMode,
343
343
outputFileMap: self . outputFileMap,
Original file line number Diff line number Diff line change @@ -13,8 +13,7 @@ import TSCBasic
13
13
import Foundation
14
14
import SwiftOptions
15
15
16
- // FIXME: rename to something like IncrementalCompilationInitialState
17
- public struct IncrementalCompilation {
16
+ public struct IncrementalCompilationState {
18
17
public let showIncrementalBuildDecisions : Bool
19
18
public let enableIncrementalBuild : Bool
20
19
public let buildRecordPath : VirtualPath ?
You can’t perform that action at this time.
0 commit comments