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

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

Issue 1126163002: Improve resolution/codegen separation invariant. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 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
Index: pkg/compiler/lib/src/enqueue.dart
diff --git a/pkg/compiler/lib/src/enqueue.dart b/pkg/compiler/lib/src/enqueue.dart
index da3afed7c95fdc90807ee3618e982ca1c81e8592..056db9f2f7241b78c30938459210f8e5aeb2f408 100644
--- a/pkg/compiler/lib/src/enqueue.dart
+++ b/pkg/compiler/lib/src/enqueue.dart
@@ -853,7 +853,7 @@ class CodegenEnqueuer extends Enqueuer {
"Codegen work list is closed. Trying to add $element");
}
CodegenWorkItem workItem = new CodegenWorkItem(
- element, itemCompilationContextCreator());
+ compiler, element, itemCompilationContextCreator());
queue.add(workItem);
return true;
}

Powered by Google App Engine
This is Rietveld 408576698