Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(436)

Side by Side Diff: pkg/analyzer/lib/src/plugin/engine_plugin.dart

Issue 2342733002: Break up another large file (Closed)
Patch Set: fixed floating comment Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/type_system.dart ('k') | pkg/analyzer/lib/src/services/lint.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698