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

Unified Diff: pkg/compiler/lib/src/common/tasks.dart

Issue 1927963002: Support compilation of Hello World (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Fixes Created 4 years, 8 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 | « pkg/compiler/lib/src/apiimpl.dart ('k') | pkg/compiler/lib/src/compiler.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/common/tasks.dart
diff --git a/pkg/compiler/lib/src/common/tasks.dart b/pkg/compiler/lib/src/common/tasks.dart
index c5a77d3d9f4aba4bd579a0d9d8a625ea0e8745a4..42d5e7b9b0a184f1d4a98fbf27a55e010f1386fd 100644
--- a/pkg/compiler/lib/src/common/tasks.dart
+++ b/pkg/compiler/lib/src/common/tasks.dart
@@ -4,12 +4,8 @@
library dart2js.common.tasks;
-import 'dart:async' show
- Future,
- Zone,
- ZoneDelegate,
- ZoneSpecification,
- runZoned;
+import 'dart:async'
+ show Future, Zone, ZoneDelegate, ZoneSpecification, runZoned;
import '../common.dart';
import '../compiler.dart' show Compiler;
@@ -149,9 +145,8 @@ class CompilerTask {
}
}
- return runZoned(
- action,
- zoneValues: { measurer: this },
+ return runZoned(action,
+ zoneValues: {measurer: this},
zoneSpecification: new ZoneSpecification(
run: run, runUnary: runUnary, runBinary: runBinary));
}
« no previous file with comments | « pkg/compiler/lib/src/apiimpl.dart ('k') | pkg/compiler/lib/src/compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698