Index: analyzer/lib/plugin/task.dart |
diff --git a/analyzer/lib/plugin/task.dart b/analyzer/lib/plugin/task.dart |
deleted file mode 100644 |
index 8ea132fa16fd0d924bb8afe5ba5756b4849e263e..0000000000000000000000000000000000000000 |
--- a/analyzer/lib/plugin/task.dart |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
-// for details. All rights reserved. Use of this source code is governed by a |
-// BSD-style license that can be found in the LICENSE file. |
- |
-/** |
- * Support for client code that extends the analysis engine by adding new |
- * analysis tasks. |
- */ |
-library analyzer.plugin.task; |
- |
-import 'package:analyzer/src/plugin/engine_plugin.dart'; |
-import 'package:analyzer/task/model.dart'; |
-import 'package:plugin/plugin.dart'; |
- |
-/** |
- * The identifier of the extension point that allows plugins to register new |
- * analysis tasks with the analysis engine. The object used as an extension must |
- * be a [TaskDescriptor]. |
- */ |
-final String TASK_EXTENSION_POINT_ID = Plugin.join( |
- EnginePlugin.UNIQUE_IDENTIFIER, EnginePlugin.TASK_EXTENSION_POINT); |