File tree Expand file tree Collapse file tree 3 files changed +0
-7
lines changed
Sources/SwiftDriver/Driver Expand file tree Collapse file tree 3 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -1402,7 +1402,6 @@ extension Driver {
14021402 return ToolExecutionDelegate (
14031403 mode: mode,
14041404 buildRecordInfo: buildRecordInfo,
1405- incrementalCompilationState: incrementalCompilationState,
14061405 showJobLifecycle: showJobLifecycle,
14071406 argsResolver: executor. resolver,
14081407 diagnosticEngine: diagnosticEngine)
Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ import Glibc
4242
4343 public let mode : Mode
4444 public let buildRecordInfo : BuildRecordInfo ?
45- public let incrementalCompilationState : IncrementalCompilationState ?
4645 public let showJobLifecycle : Bool
4746 public let diagnosticEngine : DiagnosticsEngine
4847 public var anyJobHadAbnormalExit : Bool = false
@@ -53,13 +52,11 @@ import Glibc
5352
5453 @_spi ( Testing) public init ( mode: ToolExecutionDelegate . Mode ,
5554 buildRecordInfo: BuildRecordInfo ? ,
56- incrementalCompilationState: IncrementalCompilationState ? ,
5755 showJobLifecycle: Bool ,
5856 argsResolver: ArgsResolver ,
5957 diagnosticEngine: DiagnosticsEngine ) {
6058 self . mode = mode
6159 self . buildRecordInfo = buildRecordInfo
62- self . incrementalCompilationState = incrementalCompilationState
6360 self . showJobLifecycle = showJobLifecycle
6461 self . diagnosticEngine = diagnosticEngine
6562 self . argsResolver = argsResolver
Original file line number Diff line number Diff line change @@ -153,7 +153,6 @@ final class ParsableMessageTests: XCTestCase {
153153 let args : [ String ] = try resolver. resolveArgumentList ( for: compileJob, forceResponseFiles: false )
154154 let toolDelegate = ToolExecutionDelegate ( mode: . parsableOutput,
155155 buildRecordInfo: nil ,
156- incrementalCompilationState: nil ,
157156 showJobLifecycle: false ,
158157 argsResolver: resolver,
159158 diagnosticEngine: DiagnosticsEngine ( ) )
@@ -241,7 +240,6 @@ final class ParsableMessageTests: XCTestCase {
241240 args = try resolver. resolveArgumentList ( for: compileJob!, forceResponseFiles: false )
242241 toolDelegate = ToolExecutionDelegate ( mode: . parsableOutput,
243242 buildRecordInfo: nil ,
244- incrementalCompilationState: nil ,
245243 showJobLifecycle: false ,
246244 argsResolver: resolver,
247245 diagnosticEngine: DiagnosticsEngine ( ) )
@@ -319,7 +317,6 @@ final class ParsableMessageTests: XCTestCase {
319317 forceResponseFiles: false )
320318 toolDelegate = ToolExecutionDelegate ( mode: . parsableOutput,
321319 buildRecordInfo: nil ,
322- incrementalCompilationState: nil ,
323320 showJobLifecycle: false ,
324321 argsResolver: resolver,
325322 diagnosticEngine: DiagnosticsEngine ( ) )
You can’t perform that action at this time.
0 commit comments