We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41dc466 commit fbef7e1Copy full SHA for fbef7e1
tools/swift-plugin-server/Sources/swift-plugin-server/swift-plugin-server.swift
@@ -40,11 +40,11 @@ final class SwiftPluginServer {
40
/// @main entry point.
41
static func main() throws {
42
let connection = try PluginHostConnection()
43
- let messageHandler = CompilerPluginMessageHandler(
+ let listener = CompilerPluginMessageListener(
44
connection: connection,
45
provider: self.init()
46
)
47
- try messageHandler.main()
+ try listener.main()
48
}
49
50
0 commit comments