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

Unified Diff: pkg/analysis_server/lib/edit/assist/assist_dart.dart

Issue 1073383002: Create a public API for contributing assists and make assists pluggable (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 5 years, 8 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
« no previous file with comments | « pkg/analysis_server/lib/edit/assist/assist_core.dart ('k') | pkg/analysis_server/lib/plugin/assist.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/edit/assist/assist_dart.dart
diff --git a/pkg/analysis_server/lib/edit/assist/assist_dart.dart b/pkg/analysis_server/lib/edit/assist/assist_dart.dart
new file mode 100644
index 0000000000000000000000000000000000000000..78166909624c7f84293e72045a2a17faf6687729
--- /dev/null
+++ b/pkg/analysis_server/lib/edit/assist/assist_dart.dart
@@ -0,0 +1,43 @@
+// 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.assist.assist_dart;
+
+import 'package:analysis_server/edit/assist/assist_core.dart';
+import 'package:analyzer/src/generated/ast.dart';
+import 'package:analyzer/src/generated/engine.dart';
+import 'package:analyzer/src/generated/source.dart';
+
+/**
+ * An [AssistContributor] that can be used to contribute assists for Dart
+ * files.
+ */
+abstract class DartAssistContributor extends AssistContributor {
+ @override
+ List<Assist> compute(
+ AnalysisContext context, Source source, int offset, int length) {
+ if (!AnalysisEngine.isDartFileName(source.fullName)) {
+ return Assist.EMPTY_LIST;
+ }
+ List<Source> libraries = context.getLibrariesContaining(source);
+ if (libraries.isEmpty) {
+ return Assist.EMPTY_LIST;
+ }
+ CompilationUnit unit =
+ context.resolveCompilationUnit2(source, libraries[0]);
+ if (unit == null) {
+ return Assist.EMPTY_LIST;
+ }
+ return internalComputeAssists(unit, offset, length);
+ }
+
+ /**
+ * Return a list of assists for a location in the given [source]. The location
+ * is specified by the [offset] and [length] of the selected region. The
+ * [context] can be used to get additional information that is useful for
+ * computing assists.
+ */
+ List<Assist> internalComputeAssists(
+ CompilationUnit unit, int offset, int length);
+}
« no previous file with comments | « pkg/analysis_server/lib/edit/assist/assist_core.dart ('k') | pkg/analysis_server/lib/plugin/assist.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698