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

Unified Diff: pkg/analysis_server/test/services/completion/dart/inherited_contributor_test.dart

Issue 1470373002: create new Dart specific completion contributor extension point (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: merge 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 side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/services/completion/dart/inherited_contributor_test.dart
diff --git a/pkg/analysis_server/test/services/completion/dart/inherited_contributor_test.dart b/pkg/analysis_server/test/services/completion/dart/inherited_contributor_test.dart
index d03a12dc6ca1fd1815b7db3c6fddb45178653d9d..4ef42d3289b01924a7aeee5bb4670321aab509b2 100644
--- a/pkg/analysis_server/test/services/completion/dart/inherited_contributor_test.dart
+++ b/pkg/analysis_server/test/services/completion/dart/inherited_contributor_test.dart
@@ -6,14 +6,13 @@ library test.services.completion.dart.inherited_computer_test;
import 'package:analysis_server/plugin/protocol/protocol.dart'
hide Element, ElementKind;
-import 'package:analysis_server/src/provisional/completion/completion_dart.dart';
+import 'package:analysis_server/src/provisional/completion/dart/completion_dart.dart';
import 'package:analysis_server/src/services/completion/dart/inherited_contributor.dart';
import 'package:analysis_server/src/services/completion/dart_completion_manager.dart'
hide DartCompletionContributor;
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'package:unittest/unittest.dart';
-// import '../../../utils.dart';
import 'completion_contributor_util.dart';
main() {
@@ -70,9 +69,9 @@ class A {
B suggested2(String y) => null;
}
''');
- addSource(
- '/otherPart.dart',
- '''
+ addSource(
+ '/otherPart.dart',
+ '''
part of myLib;
class B extends A {
B suggested2(String y) => null;

Powered by Google App Engine
This is Rietveld 408576698