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

Unified Diff: dart/lib/compiler/implementation/compiler.dart

Issue 10826243: Restore lazy parsing of classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 4 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 | dart/lib/compiler/implementation/world.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/lib/compiler/implementation/compiler.dart
diff --git a/dart/lib/compiler/implementation/compiler.dart b/dart/lib/compiler/implementation/compiler.dart
index 9fde73ab5ab4e38ebd50a9bc6f0c00d1dbb1eb95..1c1b8339e061d3d2869066552b4b147ad9e4121f 100644
--- a/dart/lib/compiler/implementation/compiler.dart
+++ b/dart/lib/compiler/implementation/compiler.dart
@@ -580,10 +580,6 @@ class Compiler implements DiagnosticListener {
});
}
- // TODO(ahe): Remove this line. Eventually, enqueuer.resolution
- // should know this.
- world.populate(this, libraries.getValues());
-
log('Resolving...');
phase = PHASE_RESOLVING;
backend.enqueueHelpers(enqueuer.resolution);
@@ -595,6 +591,10 @@ class Compiler implements DiagnosticListener {
log('Inferring types...');
typesTask.onResolutionComplete();
+ // TODO(ahe): Remove this line. Eventually, enqueuer.resolution
+ // should know this.
+ world.populate(this);
+
log('Compiling...');
phase = PHASE_COMPILING;
processQueue(enqueuer.codegen, main);
« no previous file with comments | « no previous file | dart/lib/compiler/implementation/world.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698