| OLD | NEW |
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 analyzer.src.plugin.engine_plugin; | 5 library analyzer.src.plugin.engine_plugin; |
| 6 | 6 |
| 7 import 'package:analyzer/error/error.dart' show AnalysisError; |
| 7 import 'package:analyzer/plugin/task.dart'; | 8 import 'package:analyzer/plugin/task.dart'; |
| 8 import 'package:analyzer/src/generated/engine.dart' | 9 import 'package:analyzer/src/generated/engine.dart' |
| 9 show InternalAnalysisContext; | 10 show InternalAnalysisContext; |
| 10 import 'package:analyzer/src/generated/error.dart' show AnalysisError; | |
| 11 import 'package:analyzer/src/task/dart.dart'; | 11 import 'package:analyzer/src/task/dart.dart'; |
| 12 import 'package:analyzer/src/task/dart_work_manager.dart'; | 12 import 'package:analyzer/src/task/dart_work_manager.dart'; |
| 13 import 'package:analyzer/src/task/general.dart'; | 13 import 'package:analyzer/src/task/general.dart'; |
| 14 import 'package:analyzer/src/task/html.dart'; | 14 import 'package:analyzer/src/task/html.dart'; |
| 15 import 'package:analyzer/src/task/html_work_manager.dart'; | 15 import 'package:analyzer/src/task/html_work_manager.dart'; |
| 16 import 'package:analyzer/src/task/options_work_manager.dart'; | 16 import 'package:analyzer/src/task/options_work_manager.dart'; |
| 17 import 'package:analyzer/src/task/yaml.dart'; | 17 import 'package:analyzer/src/task/yaml.dart'; |
| 18 import 'package:analyzer/task/model.dart'; | 18 import 'package:analyzer/task/model.dart'; |
| 19 import 'package:plugin/plugin.dart'; | 19 import 'package:plugin/plugin.dart'; |
| 20 | 20 |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 269 * passed to the extension manager to populate it. | 269 * passed to the extension manager to populate it. |
| 270 * | 270 * |
| 271 * This annotation is not used at runtime; it is used to aid in static analysis | 271 * This annotation is not used at runtime; it is used to aid in static analysis |
| 272 * of the task model during development. | 272 * of the task model during development. |
| 273 */ | 273 */ |
| 274 class ExtensionPointId { | 274 class ExtensionPointId { |
| 275 final String extensionPointId; | 275 final String extensionPointId; |
| 276 | 276 |
| 277 const ExtensionPointId(this.extensionPointId); | 277 const ExtensionPointId(this.extensionPointId); |
| 278 } | 278 } |
| OLD | NEW |