We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a94257c commit c652f64Copy full SHA for c652f64
Sources/WasmKitGDBHandler/WasmKitHandler.swift renamed to Sources/WasmKitGDBHandler/WasmKitGDBHandler.swift
@@ -4,7 +4,7 @@ import WasmKit
4
5
import struct Foundation.Date
6
7
-package final class WasmKitHandler: ChannelInboundHandler {
+package final class WasmKitGDBHandler: ChannelInboundHandler {
8
package typealias InboundIn = GDBPacket<GDBHostCommand>
9
package typealias OutboundOut = GDBTargetResponse
10
Sources/wasmkit-gdb-tool/Entrypoint.swift
@@ -40,7 +40,7 @@ struct Entrypoint: ParsableCommand {
40
try channel.pipeline.syncOperations.addHandlers([
41
ByteToMessageHandler(GDBHostCommandDecoder()),
42
MessageToByteHandler(GDBTargetResponseEncoder()),
43
- WasmKitHandler(),
+ WasmKitGDBHandler(),
44
])
45
}
46
0 commit comments