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

Unified Diff: pkg/analysis_server/lib/src/services/completion/dart/label_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/label_contributor.dart
diff --git a/pkg/analysis_server/lib/src/services/completion/dart/label_contributor.dart b/pkg/analysis_server/lib/src/services/completion/dart/label_contributor.dart
index 9688be3dcae4e22df538f6961110599ee8927702..8600be2e9ea04cdb373a8da51399ee1fb3e6b4e4 100644
--- a/pkg/analysis_server/lib/src/services/completion/dart/label_contributor.dart
+++ b/pkg/analysis_server/lib/src/services/completion/dart/label_contributor.dart
@@ -191,8 +191,8 @@ class _LabelVisitor extends LocalDeclarationVisitor {
_LabelVisitor(DartCompletionRequest request, this.includeStatementLabels,
this.includeCaseLabels, 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