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

Unified Diff: pkg/analysis_server/lib/completion/completion_dart.dart

Issue 1347283005: refactor ContributionSorter to use new API (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: merge Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/analysis_server/lib/completion/dart/completion_target.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_server/lib/completion/completion_dart.dart
diff --git a/pkg/analysis_server/lib/completion/completion_dart.dart b/pkg/analysis_server/lib/completion/completion_dart.dart
index 669b2efe44192ef7ba223b5e6d366b463ab6eb7d..1ddd5a095be3d404a7928ebce2d61c7dc622d219 100644
--- a/pkg/analysis_server/lib/completion/completion_dart.dart
+++ b/pkg/analysis_server/lib/completion/completion_dart.dart
@@ -9,6 +9,7 @@ import 'package:analysis_server/src/protocol.dart';
import 'package:analyzer/src/generated/ast.dart';
import 'package:analyzer/src/generated/engine.dart';
import 'package:analyzer/src/generated/source.dart';
+import 'package:analysis_server/completion/dart/completion_target.dart';
/**
* An object used to produce completions for a specific error within a Dart
@@ -78,7 +79,7 @@ abstract class DartCompletionRequest extends CompletionRequest {
* Return the completion target. This determines what part of the parse tree
* will receive the newly inserted text.
*/
- //CompletionTarget get target;
+ CompletionTarget get target;
/**
* Information about the types of suggestions that should be included.
« no previous file with comments | « no previous file | pkg/analysis_server/lib/completion/dart/completion_target.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698