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

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

Issue 2289353003: Make Enqueuer a pure interface. (Closed)
Patch Set: Created 4 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 | « pkg/compiler/lib/src/common/backend_api.dart ('k') | pkg/compiler/lib/src/compiler.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/common/codegen.dart
diff --git a/pkg/compiler/lib/src/common/codegen.dart b/pkg/compiler/lib/src/common/codegen.dart
index cee2fcb2f78103e04e5e9d1128fa8eb2ce622ce5..760fd5e6d2b724365b26c8f3918b2fc3ef32d6dd 100644
--- a/pkg/compiler/lib/src/common/codegen.dart
+++ b/pkg/compiler/lib/src/common/codegen.dart
@@ -16,7 +16,7 @@ import '../elements/elements.dart'
FunctionElement,
LocalFunctionElement,
ResolvedAst;
-import '../enqueue.dart' show CodegenEnqueuer;
+import '../enqueue.dart' show Enqueuer;
import '../universe/use.dart' show DynamicUse, StaticUse, TypeUse;
import '../universe/world_impact.dart'
show WorldImpact, WorldImpactBuilder, WorldImpactVisitor;
@@ -244,7 +244,7 @@ class CodegenWorkItem extends WorkItem {
: this.resolvedAst = resolvedAst,
super(resolvedAst.element, compilationContext);
- WorldImpact run(Compiler compiler, CodegenEnqueuer world) {
+ WorldImpact run(Compiler compiler, Enqueuer world) {
if (world.isProcessed(element)) return const WorldImpact();
registry = new CodegenRegistry(compiler, element);
« no previous file with comments | « pkg/compiler/lib/src/common/backend_api.dart ('k') | pkg/compiler/lib/src/compiler.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698