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

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

Issue 1927323002: Implement stable resolution of generic types without type arguments to their bounds. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Merge and regenerate the task graph. 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/services/completion/dart/completion_contributor_util.dart
diff --git a/pkg/analysis_server/test/services/completion/dart/completion_contributor_util.dart b/pkg/analysis_server/test/services/completion/dart/completion_contributor_util.dart
index 24b9aaa30be75b8914c5d1db3c2edae9f1628263..08c83de9cac871e78c201cca7414f20d0b441f25 100644
--- a/pkg/analysis_server/test/services/completion/dart/completion_contributor_util.dart
+++ b/pkg/analysis_server/test/services/completion/dart/completion_contributor_util.dart
@@ -143,10 +143,10 @@ abstract class DartCompletionContributorTest extends AbstractContextTest {
if (elemOffset != null) {
expect(cs.element.location.offset, elemOffset);
}
- if(paramName != null) {
+ if (paramName != null) {
expect(cs.parameterName, paramName);
}
- if(paramType != null) {
+ if (paramType != null) {
expect(cs.parameterType, paramType);
}
return cs;
@@ -365,8 +365,7 @@ abstract class DartCompletionContributorTest extends AbstractContextTest {
return cs;
}
- CompletionSuggestion assertSuggestName(
- String name,
+ CompletionSuggestion assertSuggestName(String name,
{int relevance: DART_RELEVANCE_DEFAULT,
String importUri,
CompletionSuggestionKind kind: CompletionSuggestionKind.IDENTIFIER,

Powered by Google App Engine
This is Rietveld 408576698