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

Unified Diff: lib/devc.dart

Issue 959073002: Fix new line breaks on } (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 5 years, 10 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
« no previous file with comments | « no previous file | lib/src/codegen/dart_codegen.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/devc.dart
diff --git a/lib/devc.dart b/lib/devc.dart
index efb41e4c2babdf34dd1c15297c2492f321c5ac60..d9d3ef82c03a379b04d5ffd413d05886067ec75a 100644
--- a/lib/devc.dart
+++ b/lib/devc.dart
@@ -111,13 +111,13 @@ CheckerResults _compileDart(
var codeChecker = new CodeChecker(rules, reporter, options);
var generators = <CodeGenerator>[];
if (options.dumpSrcDir != null) {
- generators.add(new EmptyDartGenerator(
- options.dumpSrcDir, uri, rules, options.formatOutput));
+ generators
+ .add(new EmptyDartGenerator(options.dumpSrcDir, uri, rules, options));
}
var outputDir = options.outputDir;
if (outputDir != null) {
var cg = options.outputDart
- ? new DartGenerator(outputDir, uri, rules, options.formatOutput)
+ ? new DartGenerator(outputDir, uri, rules, options)
: new JSGenerator(outputDir, uri, rules);
generators.add(cg);
}
« no previous file with comments | « no previous file | lib/src/codegen/dart_codegen.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698