Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1345)

Unified Diff: pkg/analyzer_plugin/lib/src/driver.dart

Issue 2676633003: Add server-side communications channel (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analyzer_plugin/lib/src/driver.dart
diff --git a/pkg/analyzer_plugin/lib/src/driver.dart b/pkg/analyzer_plugin/lib/src/driver.dart
index 340bc0a406cee641b3a47f1cca66c6d6904ac9f0..3005d0f5bc1901f78019b9ecb4c9680734051ea4 100644
--- a/pkg/analyzer_plugin/lib/src/driver.dart
+++ b/pkg/analyzer_plugin/lib/src/driver.dart
@@ -27,7 +27,7 @@ class Driver implements ServerPluginStarter {
@override
void start(SendPort sendPort) {
- IsolateChannel channel = new IsolateChannel(sendPort);
+ PluginIsolateChannel channel = new PluginIsolateChannel(sendPort);
plugin.start(channel);
}
}

Powered by Google App Engine
This is Rietveld 408576698