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 @@ -28,7 +28,7 @@ add_library(SwiftDriver
28
28
Execution/ProcessProtocol.swift
29
29
Execution/llbuild.swift
30
30
31
- "Incremental Compilation/IncrementalCompilation .swift"
31
+ "Incremental Compilation/IncrementalCompilationState .swift"
32
32
"Incremental Compilation/InputIInfoMap.swift"
33
33
"Incremental Compilation/InputInfo.swift"
34
34
"Incremental Compilation/SourceFileDependencyGraph.swift"
Original file line number Diff line number Diff line change @@ -140,7 +140,7 @@ public struct Driver {
140
140
public let moduleOutputInfo : ModuleOutputInfo
141
141
142
142
/// Code & data for incremental compilation
143
- public let incrementalCompilation : IncrementalCompilation
143
+ public let incrementalCompilationState : IncrementalCompilationState
144
144
145
145
/// The path of the SDK.
146
146
public var sdkPath : String ? {
@@ -323,7 +323,7 @@ public struct Driver {
323
323
debugInfoLevel: debugInfo. level, diagnosticsEngine: diagnosticEngine)
324
324
325
325
// Determine the state for incremental compilation
326
- self . incrementalCompilation = IncrementalCompilation (
326
+ self . incrementalCompilationState = IncrementalCompilationState (
327
327
& parsedOptions,
328
328
compilerMode: compilerMode,
329
329
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