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

Unified Diff: pkg/analysis_server/lib/src/socket_server.dart

Issue 801543002: Rework instrumentation API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean-up 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/src/socket_server.dart
diff --git a/pkg/analysis_server/lib/src/socket_server.dart b/pkg/analysis_server/lib/src/socket_server.dart
index 12337a89b44b7c8c60a65ff5fa843cf5a9deafe3..d6851ecde7bde364e52f5df4687959f9cde6f3b0 100644
--- a/pkg/analysis_server/lib/src/socket_server.dart
+++ b/pkg/analysis_server/lib/src/socket_server.dart
@@ -40,7 +40,7 @@ Index _createIndex() {
class SocketServer {
final AnalysisServerOptions analysisServerOptions;
final DirectoryBasedDartSdk defaultSdk;
- final InstrumentationServer instrumentationServer;
+ final InstrumentationService instrumentationService;
/**
* The analysis server that was created when a client established a
@@ -49,7 +49,7 @@ class SocketServer {
AnalysisServer analysisServer;
SocketServer(this.analysisServerOptions, this.defaultSdk,
- this.instrumentationServer);
+ this.instrumentationService);
/**
* Create an analysis server which will communicate with the client using the
@@ -75,7 +75,7 @@ class SocketServer {
_createIndex(),
analysisServerOptions,
defaultSdk,
- instrumentationServer,
+ instrumentationService,
rethrowExceptions: false);
_initializeHandlers(analysisServer);
}
« no previous file with comments | « pkg/analysis_server/lib/src/channel/web_socket_channel.dart ('k') | pkg/analysis_server/lib/stdio_server.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698