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

Side by Side Diff: pkg/analysis_server/test/services/completion/dart/inherited_contributor_test.dart

Issue 1470863003: Rework contribution sorter to use futures (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: merge Created 5 years 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 test.services.completion.inherited_computer_test; 5 library test.services.completion.dart.inherited_computer_test;
6 6
7 import 'package:analysis_server/plugin/protocol/protocol.dart' 7 import 'package:analysis_server/plugin/protocol/protocol.dart'
8 hide Element, ElementKind; 8 hide Element, ElementKind;
9 import 'package:analysis_server/src/provisional/completion/completion_dart.dart' ; 9 import 'package:analysis_server/src/provisional/completion/completion_dart.dart' ;
10 import 'package:analysis_server/src/services/completion/dart/inherited_contribut or.dart'; 10 import 'package:analysis_server/src/services/completion/dart/inherited_contribut or.dart';
11 import 'package:analysis_server/src/services/completion/dart_completion_manager. dart' 11 import 'package:analysis_server/src/services/completion/dart_completion_manager. dart'
12 hide DartCompletionContributor; 12 hide DartCompletionContributor;
13 import 'package:test_reflective_loader/test_reflective_loader.dart'; 13 import 'package:test_reflective_loader/test_reflective_loader.dart';
14 import 'package:unittest/unittest.dart'; 14 import 'package:unittest/unittest.dart';
15 15
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 expect(cs.relevance, equals(DART_RELEVANCE_HIGH)); 113 expect(cs.relevance, equals(DART_RELEVANCE_HIGH));
114 expect(cs.importUri, null); 114 expect(cs.importUri, null);
115 // expect(cs.selectionOffset, equals(completion.length)); 115 // expect(cs.selectionOffset, equals(completion.length));
116 // expect(cs.selectionLength, equals(0)); 116 // expect(cs.selectionLength, equals(0));
117 expect(cs.isDeprecated, isFalse); 117 expect(cs.isDeprecated, isFalse);
118 expect(cs.isPotential, isFalse); 118 expect(cs.isPotential, isFalse);
119 expect(cs.element, isNotNull); 119 expect(cs.element, isNotNull);
120 return cs; 120 return cs;
121 } 121 }
122 } 122 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698