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

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

Issue 955743002: Add the 'executionDomain' performance tag. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rename tag Created 5 years, 10 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
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/domain_execution.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/src/analysis_server.dart
diff --git a/pkg/analysis_server/lib/src/analysis_server.dart b/pkg/analysis_server/lib/src/analysis_server.dart
index 40297678f22555d376fb68795a83013879084ea1..15f57590a62aab1de4214dcdd0a2cf7ec19cab75 100644
--- a/pkg/analysis_server/lib/src/analysis_server.dart
+++ b/pkg/analysis_server/lib/src/analysis_server.dart
@@ -1326,16 +1326,16 @@ class ServerPerformance {
*/
class ServerPerformanceStatistics {
/**
- * The [PerformanceTag] for time spent in
- * PerformAnalysisOperation._updateIndex.
+ * The [PerformanceTag] for time spent in [ExecutionDomainHandler].
*/
- static PerformanceTag index = new PerformanceTag('index');
+ static PerformanceTag executionNotifications =
+ new PerformanceTag('executionNotifications');
/**
* The [PerformanceTag] for time spent in
- * PerformAnalysisOperation._sendNotices.
+ * PerformAnalysisOperation._updateIndex.
*/
- static PerformanceTag notices = new PerformanceTag('notices');
+ static PerformanceTag index = new PerformanceTag('index');
/**
* The [PerformanceTag] for time spent performing a _DartIndexOperation.
@@ -1353,4 +1353,10 @@ class ServerPerformanceStatistics {
* AnalysisServer.performOperation when the server is idle.
*/
static PerformanceTag idle = new PerformanceTag('idle');
+
+ /**
+ * The [PerformanceTag] for time spent in
+ * PerformAnalysisOperation._sendNotices.
+ */
+ static PerformanceTag notices = new PerformanceTag('notices');
}
« no previous file with comments | « no previous file | pkg/analysis_server/lib/src/domain_execution.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698