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

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

Issue 2828873002: Revert "Remove JavaScriptBackend from ClosedWorldBase" (Closed)
Patch Set: Created 3 years, 8 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/backend.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 13443a32c58013977045d93ba84c3ff997dc75b2..65620fda8e12fd01ac36f67a8728c26b339a147f 100644
--- a/pkg/compiler/lib/src/compiler.dart
+++ b/pkg/compiler/lib/src/compiler.dart
@@ -626,7 +626,6 @@ abstract class Compiler {
processQueue(resolutionEnqueuer, mainMethod, libraryLoader.libraries,
onProgress: showResolutionProgress);
- backend.onResolutionEnd();
resolutionEnqueuer.logSummary(reporter.log);
_reporter.reportSuppressedMessagesSummary();
@@ -705,10 +704,10 @@ abstract class Compiler {
ClosedWorldRefiner closeResolution() {
phase = PHASE_DONE_RESOLVING;
- ClosedWorldImpl world = resolutionWorldBuilder.closeWorld();
+ ClosedWorldImpl world = resolutionWorldBuilder.closeWorld(reporter);
// Compute whole-program-knowledge that the backend needs. (This might
// require the information computed in [world.closeWorld].)
- backend.onResolutionClosedWorld(world, world);
+ backend.onResolutionComplete(world, world);
deferredLoadTask.onResolutionComplete(mainFunction);
« no previous file with comments | « no previous file | pkg/compiler/lib/src/js_backend/backend.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698