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 import 'dart:async'; | 5 import 'dart:async'; |
6 import 'dart:collection'; | 6 import 'dart:collection'; |
7 import 'dart:core'; | 7 import 'dart:core'; |
8 import 'dart:io' as io; | 8 import 'dart:io' as io; |
9 import 'dart:math' show max; | 9 import 'dart:math' show max; |
10 | 10 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 import 'package:analyzer/src/dart/ast/utilities.dart'; | 51 import 'package:analyzer/src/dart/ast/utilities.dart'; |
52 import 'package:analyzer/src/dart/element/ast_provider.dart'; | 52 import 'package:analyzer/src/dart/element/ast_provider.dart'; |
53 import 'package:analyzer/src/generated/engine.dart'; | 53 import 'package:analyzer/src/generated/engine.dart'; |
54 import 'package:analyzer/src/generated/sdk.dart'; | 54 import 'package:analyzer/src/generated/sdk.dart'; |
55 import 'package:analyzer/src/generated/source.dart'; | 55 import 'package:analyzer/src/generated/source.dart'; |
56 import 'package:analyzer/src/generated/source_io.dart'; | 56 import 'package:analyzer/src/generated/source_io.dart'; |
57 import 'package:analyzer/src/generated/utilities_general.dart'; | 57 import 'package:analyzer/src/generated/utilities_general.dart'; |
58 import 'package:analyzer/src/util/glob.dart'; | 58 import 'package:analyzer/src/util/glob.dart'; |
59 import 'package:analyzer_plugin/protocol/protocol_common.dart' hide Element; | 59 import 'package:analyzer_plugin/protocol/protocol_common.dart' hide Element; |
60 import 'package:front_end/src/base/performace_logger.dart'; | 60 import 'package:front_end/src/base/performace_logger.dart'; |
61 import 'package:front_end/src/incremental/byte_store.dart'; | 61 import 'package:front_end/src/byte_store/byte_store.dart'; |
62 import 'package:front_end/src/incremental/file_byte_store.dart'; | 62 import 'package:front_end/src/byte_store/file_byte_store.dart'; |
63 import 'package:plugin/plugin.dart'; | 63 import 'package:plugin/plugin.dart'; |
64 import 'package:telemetry/crash_reporting.dart'; | 64 import 'package:telemetry/crash_reporting.dart'; |
65 import 'package:telemetry/telemetry.dart' as telemetry; | 65 import 'package:telemetry/telemetry.dart' as telemetry; |
66 import 'package:watcher/watcher.dart'; | 66 import 'package:watcher/watcher.dart'; |
67 | 67 |
68 typedef void OptionUpdater(AnalysisOptionsImpl options); | 68 typedef void OptionUpdater(AnalysisOptionsImpl options); |
69 | 69 |
70 /** | 70 /** |
71 * Enum representing reasons why analysis might be done for a given file. | 71 * Enum representing reasons why analysis might be done for a given file. |
72 */ | 72 */ |
(...skipping 1423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1496 /** | 1496 /** |
1497 * The [PerformanceTag] for time spent in server request handlers. | 1497 * The [PerformanceTag] for time spent in server request handlers. |
1498 */ | 1498 */ |
1499 static PerformanceTag serverRequests = server.createChild('requests'); | 1499 static PerformanceTag serverRequests = server.createChild('requests'); |
1500 | 1500 |
1501 /** | 1501 /** |
1502 * The [PerformanceTag] for time spent in split store microtasks. | 1502 * The [PerformanceTag] for time spent in split store microtasks. |
1503 */ | 1503 */ |
1504 static PerformanceTag splitStore = new PerformanceTag('splitStore'); | 1504 static PerformanceTag splitStore = new PerformanceTag('splitStore'); |
1505 } | 1505 } |
OLD | NEW |