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

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

Issue 1872073002: Code completion improvement in the DAS- only suggest completions on the RHS of an as-expression tha… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: rebase with bleeding_edge Created 4 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/completion_test.dart
diff --git a/pkg/analysis_server/test/completion_test.dart b/pkg/analysis_server/test/completion_test.dart
index f2fb1510983feec698870dd28a35e52ab282a230..2a453eb949492472ca7825e0fe4594864d04f26a 100644
--- a/pkg/analysis_server/test/completion_test.dart
+++ b/pkg/analysis_server/test/completion_test.dart
@@ -2906,7 +2906,7 @@ class A<Z extends X> {
// test analysis of untyped fields and top-level vars
buildTests('test039', '''class X{}var x = null as !1X;''',
- <String>["1+X", "1-void"]);
+ <String>["1-void"]);
// test arg lists with named params
buildTests('test040', '''m(){f(a, b, {x1, x2, y}) {};f(1, 2, !1)!2;}''',

Powered by Google App Engine
This is Rietveld 408576698