| Index: sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart b/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
|
| index ab1ab86754c2955a591ad23fef17924730759903..44a11fdaf2d29475ede037a93d4bb74c28c2ed3b 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
|
| @@ -1428,15 +1428,13 @@ class HInvokeStatic extends HInvoke {
|
| }
|
|
|
| class HInvokeSuper extends HInvokeStatic {
|
| - final bool isSendSet;
|
| - final bool isPropertyAccess;
|
| - HInvokeSuper(inputs, {this.isSendSet: false, this.isPropertyAccess: false})
|
| - : super(inputs);
|
| + final bool isSetter;
|
| + HInvokeSuper(inputs, {this.isSetter: false}) : super(inputs);
|
| toString() => 'invoke super: ${element.name}';
|
| accept(HVisitor visitor) => visitor.visitInvokeSuper(this);
|
|
|
| HInstruction get value {
|
| - assert(isSendSet);
|
| + assert(isSetter);
|
| // Index 0: the element, index 1: 'this'.
|
| return inputs[2];
|
| }
|
|
|