| 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 99329fda067c4b69214e602177a23ebf59d5d76b..2dca82e69ba04b509e63a0ca1daa5230e4db07a4 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/ssa/nodes.dart
|
| @@ -2278,10 +2278,9 @@ class HIs extends HInstruction {
|
| }
|
|
|
| HInstruction get expression => inputs[0];
|
| - HInstruction getCheck(int index) => inputs[index + 1];
|
| - int get checkCount => inputs.length - 1;
|
| + HInstruction get checkCall => inputs[1];
|
|
|
| - bool hasArgumentChecks() => inputs.length > 1;
|
| + bool hasArgumentsCheck() => inputs.length > 1;
|
|
|
| HType get guaranteedType => HType.BOOLEAN;
|
|
|
|
|