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

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

Issue 2992863002: Support forEachClassMember on closure classes (Closed)
Patch Set: Created 3 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
Index: pkg/compiler/lib/src/ssa/nodes.dart
diff --git a/pkg/compiler/lib/src/ssa/nodes.dart b/pkg/compiler/lib/src/ssa/nodes.dart
index 5ac6bc12b3aa69a31aa6ed57ab09e960ebe45fb2..b6a7ad05069a5070e6b3a91728b137e08ce8f80b 100644
--- a/pkg/compiler/lib/src/ssa/nodes.dart
+++ b/pkg/compiler/lib/src/ssa/nodes.dart
@@ -1628,15 +1628,8 @@ class HCreate extends HInstruction {
/// the closure class.
FunctionEntity callMethod;
- /// If this node creates a closure class, [closure] is the closurized local
- /// function.
- Local localFunction;
-
HCreate(this.element, List<HInstruction> inputs, TypeMask type,
- {this.instantiatedTypes,
- this.hasRtiInput: false,
- this.callMethod,
- this.localFunction})
+ {this.instantiatedTypes, this.hasRtiInput: false, this.callMethod})
: super(inputs, type);
bool get isAllocation => true;

Powered by Google App Engine
This is Rietveld 408576698