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

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

Issue 2009773004: Remove reference to compiler from libary loader, fix analyzer warning (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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 | « no previous file | pkg/compiler/lib/src/js_backend/no_such_method_registry.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(),
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_backend/no_such_method_registry.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698