| Index: pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
|
| diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
|
| index 56272a333d105029337a32980d63a67d17bd063d..3227cf1d01231e123d6e000a6ae1b7dab089e449 100644
|
| --- a/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
|
| +++ b/pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart
|
| @@ -863,11 +863,9 @@ class FieldDefinition extends RootNode implements DartSpecificNode {
|
|
|
| /// Identifies a mutable variable.
|
| class MutableVariable extends Definition {
|
| - /// Body of source code that declares this mutable variable.
|
| - ExecutableElement host;
|
| Entity hint;
|
|
|
| - MutableVariable(this.host, this.hint);
|
| + MutableVariable(this.hint);
|
|
|
| accept(Visitor v) => v.visitMutableVariable(this);
|
| }
|
|
|