| Index: lib/compiler/implementation/ssa/nodes.dart
|
| diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart
|
| index 52fc8ea178e86e06452d53d907fd6402e1670f89..9bd2de6a085582d3ab7b623954c65e48bd516955 100644
|
| --- a/lib/compiler/implementation/ssa/nodes.dart
|
| +++ b/lib/compiler/implementation/ssa/nodes.dart
|
| @@ -2208,10 +2208,10 @@ class HIndexAssign extends HInvokeStatic {
|
| }
|
|
|
| class HIs extends HInstruction {
|
| - final Type typeName;
|
| + final Type typeExpression;
|
| final bool nullOk;
|
|
|
| - HIs(this.typeName, HInstruction expression, [nullOk = false])
|
| + HIs(this.typeExpression, HInstruction expression, [nullOk = false])
|
| : this.nullOk = nullOk, super(<HInstruction>[expression]);
|
|
|
| HInstruction get expression() => inputs[0];
|
| @@ -2220,7 +2220,7 @@ class HIs extends HInstruction {
|
|
|
| accept(HVisitor visitor) => visitor.visitIs(this);
|
|
|
| - toString() => "$expression is $typeName";
|
| + toString() => "$expression is $typeExpression";
|
| }
|
|
|
| class HIfBlockInformation {
|
|
|