| 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;
|
|
|