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

Unified Diff: lib/src/compiler.dart

Issue 1424133007: Compile package:js.{rest, spread} helpers (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Use freshly released version 0.6.0-beta.6 of package:js ran formatter Created 5 years, 2 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 | « lib/src/codegen/js_interop.dart ('k') | pubspec.yaml » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/compiler.dart
diff --git a/lib/src/compiler.dart b/lib/src/compiler.dart
index 772cefb9d331dd5fe7bb44a968458ed48aabb485..65e75a3dcc2424d4321a76d4233d702ef6bbf23e 100644
--- a/lib/src/compiler.dart
+++ b/lib/src/compiler.dart
@@ -479,9 +479,11 @@ abstract class AbstractCompiler {
AnalysisErrorListener createErrorReporter(
AnalysisContext context, CompilerOptions options) {
- return options.htmlReport ? new HtmlReporter(context) : options.dumpInfo
- ? new SummaryReporter(context, options.logLevel)
- : new LogReporter(context, useColors: options.useColors);
+ return options.htmlReport
+ ? new HtmlReporter(context)
+ : options.dumpInfo
+ ? new SummaryReporter(context, options.logLevel)
+ : new LogReporter(context, useColors: options.useColors);
}
// TODO(jmesserly): find a better home for these.
« no previous file with comments | « lib/src/codegen/js_interop.dart ('k') | pubspec.yaml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698