| Index: lib/compiler/implementation/ssa/nodes.dart
|
| diff --git a/lib/compiler/implementation/ssa/nodes.dart b/lib/compiler/implementation/ssa/nodes.dart
|
| index 67ca872ab4950a93672491c827ca778886570cc0..6c8cf942189c16c331e0efc6b5cd8fba2ba952ef 100644
|
| --- a/lib/compiler/implementation/ssa/nodes.dart
|
| +++ b/lib/compiler/implementation/ssa/nodes.dart
|
| @@ -1018,6 +1018,8 @@ class HTypeGuard extends HCheck {
|
|
|
| bool isControlFlow() => true;
|
|
|
| + bool isStatement() => isOn;
|
| +
|
| accept(HVisitor visitor) => visitor.visitTypeGuard(this);
|
| int typeCode() => 1;
|
| bool typeEquals(other) => other is HTypeGuard;
|
|
|