Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Sources/SKSupport/LineTable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
//===----------------------------------------------------------------------===//

import LSPLogging
#if canImport(os)
import os
#endif

public struct LineTable: Hashable, Sendable {
@usableFromInline
Expand Down
1 change: 0 additions & 1 deletion Sources/SwiftExtensions/PipeAsStringHandler.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
//===----------------------------------------------------------------------===//

import Foundation
import SwiftExtensions

/// Gathers data from a stdout or stderr pipe. When it has accumulated a full line, calls the handler to handle the
/// string.
Expand Down
4 changes: 2 additions & 2 deletions Tests/SourceKitLSPTests/ExecuteCommandTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ final class ExecuteCommandTests: XCTestCase {
return ApplyEditResponse(applied: true, failureReason: nil)
}

try await testClient.send(request)
let _ = try await testClient.send(request)

try await fulfillmentOfOrThrow([expectation])

Expand Down Expand Up @@ -123,7 +123,7 @@ final class ExecuteCommandTests: XCTestCase {
return ApplyEditResponse(applied: true, failureReason: nil)
}

try await testClient.send(request)
let _ = try await testClient.send(request)

try await fulfillmentOfOrThrow([expectation])

Expand Down