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

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

Issue 1060713005: rename completion computer to contributor (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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
Index: pkg/analysis_server/test/services/completion/arglist_computer_test.dart
diff --git a/pkg/analysis_server/test/services/completion/arglist_computer_test.dart b/pkg/analysis_server/test/services/completion/arglist_computer_test.dart
index 67e3814322a6d72f3bddb15f2a19b1da05b330e8..64d391a4d77f40b81e7330fda9c244a65fdeeab0 100644
--- a/pkg/analysis_server/test/services/completion/arglist_computer_test.dart
+++ b/pkg/analysis_server/test/services/completion/arglist_computer_test.dart
@@ -13,14 +13,14 @@ import 'completion_test_util.dart';
main() {
groupSep = ' | ';
- runReflectiveTests(ArgListComputerTest);
+ runReflectiveTests(ArgListContributorTest);
}
@reflectiveTest
-class ArgListComputerTest extends AbstractCompletionTest {
+class ArgListContributorTest extends AbstractCompletionTest {
@override
- void setUpComputer() {
- computer = new ArgListComputer();
+ void setUpContributor() {
+ contributor = new ArgListContributor();
}
test_ArgumentList_imported_function_0() {

Powered by Google App Engine
This is Rietveld 408576698