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

Unified Diff: pkg/analysis_server/lib/stdio_server.dart

Issue 790063002: Instrument communications (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years 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/analysis_server/lib/stdio_server.dart
diff --git a/pkg/analysis_server/lib/stdio_server.dart b/pkg/analysis_server/lib/stdio_server.dart
index 5c3f6aef289a0b36747107767eb708b9552fe946..bc8c002eec353af6fec3d2b840cb5f7f6363aecf 100644
--- a/pkg/analysis_server/lib/stdio_server.dart
+++ b/pkg/analysis_server/lib/stdio_server.dart
@@ -35,7 +35,7 @@ class StdioAnalysisServer {
*/
Future serveStdio() {
ByteStreamServerChannel serverChannel =
- new ByteStreamServerChannel(stdin, stdout);
+ new ByteStreamServerChannel(stdin, stdout, socketServer.instrumentationServer);
socketServer.createAnalysisServer(serverChannel);
return serverChannel.closed;
}

Powered by Google App Engine
This is Rietveld 408576698