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

Unified Diff: pkg/analysis_server/tool/spec/to_html.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/tool/spec/to_html.dart
diff --git a/pkg/analysis_server/tool/spec/to_html.dart b/pkg/analysis_server/tool/spec/to_html.dart
index a8babb14d57f1e76cf3f89112e4262c9bbdd6d46..6e1bf7c59d6f042b7dd87786723d45852ae189b0 100644
--- a/pkg/analysis_server/tool/spec/to_html.dart
+++ b/pkg/analysis_server/tool/spec/to_html.dart
@@ -172,8 +172,8 @@ class ToHtmlVisitor extends HierarchicalApiVisitor
ApiMappings apiMappings;
ToHtmlVisitor(Api api)
- : super(api),
- apiMappings = new ApiMappings(api) {
+ : apiMappings = new ApiMappings(api),
+ super(api) {
apiMappings.visitApi();
}

Powered by Google App Engine
This is Rietveld 408576698