Chromium Code Reviews| 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..e536fb7af9100c9f85394021a926db4b3a80f29c 100644 |
| --- a/pkg/analysis_server/lib/src/analysis_server.dart |
| +++ b/pkg/analysis_server/lib/src/analysis_server.dart |
| @@ -1326,16 +1326,15 @@ 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 executionDomain = new PerformanceTag('executionDomain'); |
|
Paul Berry
2015/02/24 17:28:10
It looks like you're only tracking time spent comp
|
| /** |
| * 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 +1352,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'); |
| } |