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

Unified Diff: pkg/analysis_services/test/completion/local_computer_test.dart

Issue 459853003: remove duplicate suggestions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix suggestion notification processing in test 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
« no previous file with comments | « pkg/analysis_services/test/completion/completion_test_util.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analysis_services/test/completion/local_computer_test.dart
diff --git a/pkg/analysis_services/test/completion/local_computer_test.dart b/pkg/analysis_services/test/completion/local_computer_test.dart
index dc666bd6b39e33c1550bd10b11a827f80a26d977..47a8ca9c8984443fb89f4aae94b6c7c2002b85c1 100644
--- a/pkg/analysis_services/test/completion/local_computer_test.dart
+++ b/pkg/analysis_services/test/completion/local_computer_test.dart
@@ -72,10 +72,11 @@ class LocalComputerTest extends AbstractCompletionTest {
}
test_function() {
- addTestSource('main(args) {^}');
+ addTestSource('main(args) {x.then((b) {^});}');
expect(computeFast(), isTrue);
assertSuggestFunction('main');
assertSuggestParameter('args');
+ assertSuggestParameter('b');
}
test_members() {
« no previous file with comments | « pkg/analysis_services/test/completion/completion_test_util.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698