| Index: pkg/compiler/lib/src/compiler.dart
|
| diff --git a/pkg/compiler/lib/src/compiler.dart b/pkg/compiler/lib/src/compiler.dart
|
| index 5eb8a447255a99e7e567721886b919dcd10a540e..7f7a37f4cda11ceff98e2fa204c56b9df0f6aad8 100644
|
| --- a/pkg/compiler/lib/src/compiler.dart
|
| +++ b/pkg/compiler/lib/src/compiler.dart
|
| @@ -340,13 +340,14 @@ abstract class Compiler implements LibraryLoaderListener {
|
| scanner = createScannerTask(),
|
| serialization = new SerializationTask(this),
|
| libraryLoader = new LibraryLoaderTask(
|
| - this,
|
| - this.resolvedUriTranslator,
|
| + resolvedUriTranslator,
|
| new _ScriptLoader(this),
|
| new _ElementScanner(scanner),
|
| - this.serialization,
|
| + serialization,
|
| this,
|
| - environment),
|
| + environment,
|
| + reporter,
|
| + measurer),
|
| parser = new ParserTask(this, options),
|
| patchParser = new PatchParserTask(this, options),
|
| resolver = createResolverTask(),
|
|
|