OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 library analysis.server; | |
6 | |
7 import 'dart:async'; | 5 import 'dart:async'; |
8 import 'dart:collection'; | 6 import 'dart:collection'; |
9 import 'dart:core'; | 7 import 'dart:core'; |
10 import 'dart:io' as io; | 8 import 'dart:io' as io; |
11 import 'dart:math' show max; | 9 import 'dart:math' show max; |
12 | 10 |
13 import 'package:analysis_server/protocol/protocol.dart'; | 11 import 'package:analysis_server/protocol/protocol.dart'; |
14 import 'package:analysis_server/protocol/protocol_generated.dart' | 12 import 'package:analysis_server/protocol/protocol_generated.dart' |
15 hide AnalysisOptions; | 13 hide AnalysisOptions; |
16 import 'package:analysis_server/src/analysis_logger.dart'; | 14 import 'package:analysis_server/src/analysis_logger.dart'; |
(...skipping 2349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2366 /** | 2364 /** |
2367 * The [PerformanceTag] for time spent in server request handlers. | 2365 * The [PerformanceTag] for time spent in server request handlers. |
2368 */ | 2366 */ |
2369 static PerformanceTag serverRequests = new PerformanceTag('serverRequests'); | 2367 static PerformanceTag serverRequests = new PerformanceTag('serverRequests'); |
2370 | 2368 |
2371 /** | 2369 /** |
2372 * The [PerformanceTag] for time spent in split store microtasks. | 2370 * The [PerformanceTag] for time spent in split store microtasks. |
2373 */ | 2371 */ |
2374 static PerformanceTag splitStore = new PerformanceTag('splitStore'); | 2372 static PerformanceTag splitStore = new PerformanceTag('splitStore'); |
2375 } | 2373 } |
OLD | NEW |