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

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

Issue 1417143003: Remove IMPORT_EXPORT_SOURCE_CLOSURE and IS_CLIENT results. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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/plugin/task.dart'; 7 import 'package:analyzer/plugin/task.dart';
8 import 'package:analyzer/src/generated/engine.dart' 8 import 'package:analyzer/src/generated/engine.dart'
9 show InternalAnalysisContext; 9 show InternalAnalysisContext;
10 import 'package:analyzer/src/generated/error.dart' show AnalysisError; 10 import 'package:analyzer/src/generated/error.dart' show AnalysisError;
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 // 184 //
185 // Register Dart tasks. 185 // Register Dart tasks.
186 // 186 //
187 registerExtension(taskId, BuildCompilationUnitElementTask.DESCRIPTOR); 187 registerExtension(taskId, BuildCompilationUnitElementTask.DESCRIPTOR);
188 registerExtension(taskId, BuildDirectiveElementsTask.DESCRIPTOR); 188 registerExtension(taskId, BuildDirectiveElementsTask.DESCRIPTOR);
189 registerExtension(taskId, BuildEnumMemberElementsTask.DESCRIPTOR); 189 registerExtension(taskId, BuildEnumMemberElementsTask.DESCRIPTOR);
190 registerExtension(taskId, BuildExportNamespaceTask.DESCRIPTOR); 190 registerExtension(taskId, BuildExportNamespaceTask.DESCRIPTOR);
191 registerExtension(taskId, BuildLibraryElementTask.DESCRIPTOR); 191 registerExtension(taskId, BuildLibraryElementTask.DESCRIPTOR);
192 registerExtension(taskId, BuildPublicNamespaceTask.DESCRIPTOR); 192 registerExtension(taskId, BuildPublicNamespaceTask.DESCRIPTOR);
193 registerExtension(taskId, BuildSourceExportClosureTask.DESCRIPTOR); 193 registerExtension(taskId, BuildSourceExportClosureTask.DESCRIPTOR);
194 registerExtension(taskId, BuildSourceImportExportClosureTask.DESCRIPTOR);
195 registerExtension(taskId, BuildTypeProviderTask.DESCRIPTOR); 194 registerExtension(taskId, BuildTypeProviderTask.DESCRIPTOR);
196 registerExtension(taskId, ComputeConstantDependenciesTask.DESCRIPTOR); 195 registerExtension(taskId, ComputeConstantDependenciesTask.DESCRIPTOR);
197 registerExtension(taskId, ComputeConstantValueTask.DESCRIPTOR); 196 registerExtension(taskId, ComputeConstantValueTask.DESCRIPTOR);
198 registerExtension( 197 registerExtension(
199 taskId, ComputeInferableStaticVariableDependenciesTask.DESCRIPTOR); 198 taskId, ComputeInferableStaticVariableDependenciesTask.DESCRIPTOR);
200 registerExtension(taskId, ComputeLibraryCycleTask.DESCRIPTOR); 199 registerExtension(taskId, ComputeLibraryCycleTask.DESCRIPTOR);
201 registerExtension(taskId, ContainingLibrariesTask.DESCRIPTOR); 200 registerExtension(taskId, ContainingLibrariesTask.DESCRIPTOR);
202 registerExtension(taskId, DartErrorsTask.DESCRIPTOR); 201 registerExtension(taskId, DartErrorsTask.DESCRIPTOR);
203 registerExtension(taskId, EvaluateUnitConstantsTask.DESCRIPTOR); 202 registerExtension(taskId, EvaluateUnitConstantsTask.DESCRIPTOR);
204 registerExtension(taskId, GatherUsedImportedElementsTask.DESCRIPTOR); 203 registerExtension(taskId, GatherUsedImportedElementsTask.DESCRIPTOR);
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 * passed to the extension manager to populate it. 286 * passed to the extension manager to populate it.
288 * 287 *
289 * This annotation is not used at runtime; it is used to aid in static analysis 288 * This annotation is not used at runtime; it is used to aid in static analysis
290 * of the task model during development. 289 * of the task model during development.
291 */ 290 */
292 class ExtensionPointId { 291 class ExtensionPointId {
293 final String extensionPointId; 292 final String extensionPointId;
294 293
295 const ExtensionPointId(this.extensionPointId); 294 const ExtensionPointId(this.extensionPointId);
296 } 295 }
OLDNEW
« no previous file with comments | « pkg/analyzer/lib/src/generated/incremental_resolver.dart ('k') | pkg/analyzer/lib/src/task/dart.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698