From 7fc9521875b5ec9484dd31624f5e3ed2791050b1 Mon Sep 17 00:00:00 2001 From: Nate Bosch Date: Fri, 17 Jan 2025 11:59:14 -0800 Subject: [PATCH] Drop reference to legacy communication protocol (#2446) Cleanup following #2065 The support for legacy test suite communication was dropped in #2099 but I missed a change in this comment which still describes the difference. --- pkgs/test/tool/host.dart | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/pkgs/test/tool/host.dart b/pkgs/test/tool/host.dart index dc3e5ab0f..ebe434097 100644 --- a/pkgs/test/tool/host.dart +++ b/pkgs/test/tool/host.dart @@ -191,12 +191,8 @@ MultiChannel _connectToServer() { /// the key 'exception' set to true and details in the value for 'data' (coming /// from `dart.js` due to a load exception). /// -/// Legacy bootstrap implementations send a `{'ready': true}` message as a -/// signal for this host to create a [MessageChannel] and send the port through -/// the frame's `window.onMessage` channel. -/// -/// Upcoming bootstrap implementations will send the string 'port' and include a -/// port for a prepared [MessageChannel]. +/// Bootstrap implementations send the string 'port' and include a port for a +/// prepared [MessageChannel]. /// /// Returns a [StreamChannel] which will be connected to the frame once the /// message channel port is active.