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

Unified Diff: pkg/analysis_server/lib/src/services/completion/dart/local_constructor_contributor.dart

Issue 1842063003: Start making server strong mode clean (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Remove unintended change Created 4 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/lib/src/services/completion/dart/local_constructor_contributor.dart
diff --git a/pkg/analysis_server/lib/src/services/completion/dart/local_constructor_contributor.dart b/pkg/analysis_server/lib/src/services/completion/dart/local_constructor_contributor.dart
index b9fea935f69cc7da3ab4e8a9a565d301fb0e4b1a..eb527a4250b7a9db38e599678814b8e8a68fc275 100644
--- a/pkg/analysis_server/lib/src/services/completion/dart/local_constructor_contributor.dart
+++ b/pkg/analysis_server/lib/src/services/completion/dart/local_constructor_contributor.dart
@@ -181,8 +181,8 @@ class _Visitor extends LocalDeclarationVisitor {
final List<CompletionSuggestion> suggestions;
_Visitor(DartCompletionRequest request, this.suggestions)
- : super(request.offset),
- request = request;
+ : request = request,
+ super(request.offset);
@override
void declaredClass(ClassDeclaration declaration) {

Powered by Google App Engine
This is Rietveld 408576698