| 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; | 5 library analysis.server; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:collection'; | 8 import 'dart:collection'; |
| 9 import 'dart:core'; | 9 import 'dart:core'; |
| 10 import 'dart:io' as io; | 10 import 'dart:io' as io; |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 367 */ | 367 */ |
| 368 Function onResultErrorSupplementor; | 368 Function onResultErrorSupplementor; |
| 369 | 369 |
| 370 /** | 370 /** |
| 371 * This exists as a temporary stopgap for plugins, until the official plugin | 371 * This exists as a temporary stopgap for plugins, until the official plugin |
| 372 * API is complete. | 372 * API is complete. |
| 373 */ | 373 */ |
| 374 Function onNoAnalysisResult; | 374 Function onNoAnalysisResult; |
| 375 | 375 |
| 376 /** | 376 /** |
| 377 * This exists as a temporary stopgap for plugins, until the official plugin |
| 378 * API is complete. |
| 379 */ |
| 380 Function onNoAnalysisCompletion; |
| 381 |
| 382 /** |
| 377 * The set of the files that are currently priority. | 383 * The set of the files that are currently priority. |
| 378 */ | 384 */ |
| 379 final Set<String> priorityFiles = new Set<String>(); | 385 final Set<String> priorityFiles = new Set<String>(); |
| 380 | 386 |
| 381 /** | 387 /** |
| 382 * The DiagnosticServer for this AnalysisServer. If available, it can be used | 388 * The DiagnosticServer for this AnalysisServer. If available, it can be used |
| 383 * to start an http diagnostics server or return the port for an existing | 389 * to start an http diagnostics server or return the port for an existing |
| 384 * server. | 390 * server. |
| 385 */ | 391 */ |
| 386 DiagnosticServer diagnosticServer; | 392 DiagnosticServer diagnosticServer; |
| (...skipping 1961 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2348 /** | 2354 /** |
| 2349 * The [PerformanceTag] for time spent in server request handlers. | 2355 * The [PerformanceTag] for time spent in server request handlers. |
| 2350 */ | 2356 */ |
| 2351 static PerformanceTag serverRequests = new PerformanceTag('serverRequests'); | 2357 static PerformanceTag serverRequests = new PerformanceTag('serverRequests'); |
| 2352 | 2358 |
| 2353 /** | 2359 /** |
| 2354 * The [PerformanceTag] for time spent in split store microtasks. | 2360 * The [PerformanceTag] for time spent in split store microtasks. |
| 2355 */ | 2361 */ |
| 2356 static PerformanceTag splitStore = new PerformanceTag('splitStore'); | 2362 static PerformanceTag splitStore = new PerformanceTag('splitStore'); |
| 2357 } | 2363 } |
| OLD | NEW |