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

Unified Diff: pkg/analysis_server/tool/spec/codegen_dart_protocol.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/codegen_dart_protocol.dart
diff --git a/pkg/analysis_server/tool/spec/codegen_dart_protocol.dart b/pkg/analysis_server/tool/spec/codegen_dart_protocol.dart
index fc389a4762fd00aa0e984634a6145e336dbf281b..02855a69bd26ce9a7be7ba2b2536bbfb7ecdd065 100644
--- a/pkg/analysis_server/tool/spec/codegen_dart_protocol.dart
+++ b/pkg/analysis_server/tool/spec/codegen_dart_protocol.dart
@@ -79,9 +79,9 @@ class CodegenProtocolVisitor extends DartCodegenVisitor with CodeGenerator {
final Map<String, ImpliedType> impliedTypes;
CodegenProtocolVisitor(Api api)
- : super(api),
- toHtmlVisitor = new ToHtmlVisitor(api),
- impliedTypes = computeImpliedTypes(api) {
+ : toHtmlVisitor = new ToHtmlVisitor(api),
+ impliedTypes = computeImpliedTypes(api),
+ super(api) {
codeGeneratorSettings.commentLineLength = 79;
codeGeneratorSettings.languageName = 'dart';
}

Powered by Google App Engine
This is Rietveld 408576698