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

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

Issue 1398393002: Decouple SSA builder from codegen-work-item (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 2 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 a15f0918ae83a2198b31b5ff3ecbd1d1b2a6fe6f..b4ea31001adad2c77b4debbb4098cb86ee95a3b0 100644
--- a/pkg/compiler/lib/src/enqueue.dart
+++ b/pkg/compiler/lib/src/enqueue.dart
@@ -775,12 +775,7 @@ abstract class Enqueuer {
/// [Enqueuer] which is specific to resolution.
class ResolutionEnqueuer extends Enqueuer {
- /**
- * Map from declaration elements to the [TreeElements] object holding the
- * resolution mapping for the element implementation.
- *
- * Invariant: Key elements are declaration elements.
- */
+ /// All declaration elements that have been processed by the resolver.
Johnni Winther 2015/10/13 07:26:27 Thanks!
final Set<AstElement> processedElements;
final Queue<ResolutionWorkItem> queue;

Powered by Google App Engine
This is Rietveld 408576698