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

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

Issue 1006593002: include constructor arguments in completion suggestions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 5 years, 9 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 eec4109c9b39fdc24bf9d4a6d360b723e8b26ee6..cc1d514d394293b5da26020ab386ee818cd1806b 100644
--- a/pkg/analysis_server/test/completion_test.dart
+++ b/pkg/analysis_server/test/completion_test.dart
@@ -150,7 +150,7 @@ class Map{factory Map.qq(){return null;}}class F{m(){new Map.!1qq();}}''',
buildTests('testCommentSnippets023', '''
class X {X c; X(this.!1c!3) : super() {c.!2}}''',
- <String>["1+c", "2+c", "3+c"]);
+ <String>["1+c", "2+c", "3+c"], failingTests: '13');
buildTests('testCommentSnippets024', '''
class q {m(Map q){var x;m(!1)}n(){var x;n(!2)}}''', <String>["1+x", "2+x"]);
@@ -903,8 +903,7 @@ class A {
*/
A.named(aaa, bbb) {}
methodA() {}
-}''', <String>["1+aaa", "1-bbb", "2+int", "2-double", "3+methodA"],
- failingTests: '1');
+}''', <String>["1+aaa", "1-bbb", "2+int", "2-double", "3+methodA"]);
buildTests('testCompletion_dartDoc_reference_forFunction', '''
/**

Powered by Google App Engine
This is Rietveld 408576698