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

Unified Diff: pkg/analysis_server/lib/edit/fix/fix_dart.dart

Issue 1392253002: Restructure the public API for server (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/lib/edit/fix/fix_dart.dart
diff --git a/pkg/analysis_server/lib/edit/fix/fix_dart.dart b/pkg/analysis_server/lib/edit/fix/fix_dart.dart
deleted file mode 100644
index 2229ed2eca9d42ac0550eb13530d9631ead5bd58..0000000000000000000000000000000000000000
--- a/pkg/analysis_server/lib/edit/fix/fix_dart.dart
+++ /dev/null
@@ -1,46 +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.
-
-library analysis_server.edit.fix.fix_dart;
-
-import 'package:analysis_server/edit/fix/fix_core.dart';
-import 'package:analyzer/file_system/file_system.dart';
-import 'package:analyzer/src/generated/ast.dart';
-import 'package:analyzer/src/generated/engine.dart';
-import 'package:analyzer/src/generated/error.dart';
-import 'package:analyzer/src/generated/source.dart';
-
-/**
- * A [FixContributor] that can be used to contribute fixes for errors in Dart
- * files.
- *
- * Clients are expected to extend this class when implementing plugins.
- */
-abstract class DartFixContributor extends FixContributor {
- @override
- List<Fix> computeFixes(ResourceProvider resourceProvider,
- AnalysisContext context, AnalysisError error) {
- Source source = error.source;
- if (!AnalysisEngine.isDartFileName(source.fullName)) {
- return Fix.EMPTY_LIST;
- }
- List<Source> libraries = context.getLibrariesContaining(source);
- if (libraries.isEmpty) {
- return Fix.EMPTY_LIST;
- }
- CompilationUnit unit =
- context.resolveCompilationUnit2(source, libraries[0]);
- if (unit == null) {
- return Fix.EMPTY_LIST;
- }
- return internalComputeFixes(resourceProvider, unit, error);
- }
-
- /**
- * Return a list of fixes for the given [error]. The error was reported
- * against the given compilation [unit].
- */
- List<Fix> internalComputeFixes(ResourceProvider resourceProvider,
- CompilationUnit unit, AnalysisError error);
-}

Powered by Google App Engine
This is Rietveld 408576698