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

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

Issue 2778243002: Add createKernelResolutionEnqueuerListener to kernel/closed_world_test (Closed)
Patch Set: Created 3 years, 9 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
Index: pkg/compiler/lib/src/js_backend/backend.dart
diff --git a/pkg/compiler/lib/src/js_backend/backend.dart b/pkg/compiler/lib/src/js_backend/backend.dart
index 8887796936989efe9556415e9aef2b5d6e642c97..9fd3abc66b74e375f7f4aa226efc46b20fea24f8 100644
--- a/pkg/compiler/lib/src/js_backend/backend.dart
+++ b/pkg/compiler/lib/src/js_backend/backend.dart
@@ -927,7 +927,6 @@ class JavaScriptBackend {
? const DirectEnqueuerStrategy()
: const TreeShakingEnqueuerStrategy(),
new ResolutionEnqueuerListener(
- kernelTask,
compiler.options,
compiler.elementEnvironment,
commonElements,
@@ -944,7 +943,8 @@ class JavaScriptBackend {
lookupMapResolutionAnalysis,
mirrorsResolutionAnalysis,
typeVariableResolutionAnalysis,
- nativeResolutionEnqueuer),
+ nativeResolutionEnqueuer,
+ kernelTask),
new ElementResolutionWorldBuilder(
this, compiler.resolution, const OpenWorldStrategy()),
new ResolutionWorkItemBuilder(compiler.resolution));

Powered by Google App Engine
This is Rietveld 408576698