| Index: pkg/compiler/lib/src/compiler.dart
|
| diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
|
| index 190e08bcb7888bcc5a710fdae62551e3bae9c147..05b5b919f48a7015e0aec4db05146bba4da08494 100644
|
| --- a/pkg/compiler/lib/src/compiler.dart
|
| +++ b/pkg/compiler/lib/src/compiler.dart
|
| @@ -180,9 +180,6 @@ abstract class Compiler implements LibraryLoaderListener {
|
| MirrorUsageAnalyzerTask mirrorUsageAnalyzerTask;
|
| DumpInfoTask dumpInfoTask;
|
|
|
| - bool get hasFunctionApplySupport => resolverWorld.hasFunctionApplySupport;
|
| - bool get hasIsolateSupport => resolverWorld.hasIsolateSupport;
|
| -
|
| bool get hasCrashed => _reporter.hasCrashed;
|
|
|
| Stopwatch progress;
|
| @@ -744,11 +741,7 @@ abstract class Compiler implements LibraryLoaderListener {
|
| reporter.log('Compiling...');
|
| phase = PHASE_COMPILING;
|
|
|
| - backend.onCodegenStart();
|
| - if (hasIsolateSupport) {
|
| - enqueuer.codegen
|
| - .applyImpact(backend.enableIsolateSupport(forResolution: false));
|
| - }
|
| + enqueuer.codegen.applyImpact(backend.onCodegenStart());
|
| if (compileAll) {
|
| libraryLoader.libraries.forEach((LibraryElement library) {
|
| enqueuer.codegen.applyImpact(computeImpactForLibrary(library));
|
|
|