| 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));
|
| }
|
|
|