Skip to content

Commit 7dfd310

Browse files
committed
[ToolingInterface] Fix V2 API should forward forceNoOutputs argument
While working on `swift-ide-test` integration I noticed that the `swift_getSingleFrontendInvocationFromDriverArgumentsV2` API doesn't forward `forceNoOutputs` argument.
1 parent ac6be4d commit 7dfd310

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Sources/SwiftDriver/ToolingInterface/ToolingUtil.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ public func getSingleFrontendInvocationFromDriverArgumentsV2(driverPath: UnsafeP
4040
return getSingleFrontendInvocationFromDriverArgumentsV3(driverPath: driverPath, argListCount: argListCount,
4141
argList: argList, action: action,
4242
diagnosticCallback: diagnosticCallback,
43-
compilerIntegratedTooling: true)
43+
compilerIntegratedTooling: true,
44+
forceNoOutputs: forceNoOutputs)
4445
}
4546

4647
@_cdecl("swift_getSingleFrontendInvocationFromDriverArgumentsV3")

0 commit comments

Comments
 (0)