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

Unified Diff: pkg/analysis_server/test/domain_completion_test.dart

Issue 463493003: rename CompletionSuggestionKind.VARIABLE to LOCAL_VARIABLE to match spec (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 6 years, 4 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/domain_completion_test.dart
diff --git a/pkg/analysis_server/test/domain_completion_test.dart b/pkg/analysis_server/test/domain_completion_test.dart
index d283928b66798e20425d963dbd9e87004dea19e9..c64fa6f8ab11ec62c718d554b86f9bf7082ecafa 100644
--- a/pkg/analysis_server/test/domain_completion_test.dart
+++ b/pkg/analysis_server/test/domain_completion_test.dart
@@ -172,7 +172,7 @@ class CompletionTest extends AbstractAnalysisTest {
expect(replacementLength, equals(0));
assertHasResult(CompletionSuggestionKind.CLASS, 'A');
assertHasResult(CompletionSuggestionKind.FIELD, 'a');
- assertHasResult(CompletionSuggestionKind.VARIABLE, 'b');
+ assertHasResult(CompletionSuggestionKind.LOCAL_VARIABLE, 'b');
assertHasResult(CompletionSuggestionKind.METHOD_NAME, 'x');
});
}

Powered by Google App Engine
This is Rietveld 408576698