Skip to content

Commit ae14927

Browse files
authored
Merge pull request #69240 from rintaro/macros-message-listener
[Macros] Update for CompilerPluginMessageListener
2 parents fe8295b + fbef7e1 commit ae14927

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/swift-plugin-server/Sources/swift-plugin-server/swift-plugin-server.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ final class SwiftPluginServer {
4040
/// @main entry point.
4141
static func main() throws {
4242
let connection = try PluginHostConnection()
43-
let messageHandler = CompilerPluginMessageHandler(
43+
let listener = CompilerPluginMessageListener(
4444
connection: connection,
4545
provider: self.init()
4646
)
47-
try messageHandler.main()
47+
try listener.main()
4848
}
4949
}
5050

0 commit comments

Comments
 (0)