| 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 20 matching lines...) Expand all Loading... |
| 31 import 'package:analyzer/instrumentation/instrumentation.dart'; | 31 import 'package:analyzer/instrumentation/instrumentation.dart'; |
| 32 import 'package:analyzer/plugin/resolver_provider.dart'; | 32 import 'package:analyzer/plugin/resolver_provider.dart'; |
| 33 import 'package:analyzer/source/pub_package_map_provider.dart'; | 33 import 'package:analyzer/source/pub_package_map_provider.dart'; |
| 34 import 'package:analyzer/src/context/builder.dart'; | 34 import 'package:analyzer/src/context/builder.dart'; |
| 35 import 'package:analyzer/src/dart/ast/utilities.dart'; | 35 import 'package:analyzer/src/dart/ast/utilities.dart'; |
| 36 import 'package:analyzer/src/generated/engine.dart'; | 36 import 'package:analyzer/src/generated/engine.dart'; |
| 37 import 'package:analyzer/src/generated/sdk.dart'; | 37 import 'package:analyzer/src/generated/sdk.dart'; |
| 38 import 'package:analyzer/src/generated/source.dart'; | 38 import 'package:analyzer/src/generated/source.dart'; |
| 39 import 'package:analyzer/src/generated/source_io.dart'; | 39 import 'package:analyzer/src/generated/source_io.dart'; |
| 40 import 'package:analyzer/src/generated/utilities_general.dart'; | 40 import 'package:analyzer/src/generated/utilities_general.dart'; |
| 41 import 'package:analyzer/src/summary/package_bundle_reader.dart'; | |
| 42 import 'package:analyzer/src/summary/pub_summary.dart'; | 41 import 'package:analyzer/src/summary/pub_summary.dart'; |
| 43 import 'package:analyzer/src/task/dart.dart'; | 42 import 'package:analyzer/src/task/dart.dart'; |
| 44 import 'package:analyzer/src/util/glob.dart'; | 43 import 'package:analyzer/src/util/glob.dart'; |
| 45 import 'package:analyzer/task/dart.dart'; | 44 import 'package:analyzer/task/dart.dart'; |
| 46 import 'package:plugin/plugin.dart'; | 45 import 'package:plugin/plugin.dart'; |
| 47 | 46 |
| 48 typedef void OptionUpdater(AnalysisOptionsImpl options); | 47 typedef void OptionUpdater(AnalysisOptionsImpl options); |
| 49 | 48 |
| 50 /** | 49 /** |
| 51 * Enum representing reasons why analysis might be done for a given file. | 50 * Enum representing reasons why analysis might be done for a given file. |
| (...skipping 1729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1781 /** | 1780 /** |
| 1782 * The [PerformanceTag] for time spent in server request handlers. | 1781 * The [PerformanceTag] for time spent in server request handlers. |
| 1783 */ | 1782 */ |
| 1784 static PerformanceTag serverRequests = new PerformanceTag('serverRequests'); | 1783 static PerformanceTag serverRequests = new PerformanceTag('serverRequests'); |
| 1785 | 1784 |
| 1786 /** | 1785 /** |
| 1787 * The [PerformanceTag] for time spent in split store microtasks. | 1786 * The [PerformanceTag] for time spent in split store microtasks. |
| 1788 */ | 1787 */ |
| 1789 static PerformanceTag splitStore = new PerformanceTag('splitStore'); | 1788 static PerformanceTag splitStore = new PerformanceTag('splitStore'); |
| 1790 } | 1789 } |
| OLD | NEW |