| Index: pkg/compiler/lib/src/ssa/nodes.dart
|
| diff --git a/pkg/compiler/lib/src/ssa/nodes.dart b/pkg/compiler/lib/src/ssa/nodes.dart
|
| index 8943e70525f806a12f5645b41e34bc5ed6863259..56f51f9b758757986c8964d3e1bda57e8395159f 100644
|
| --- a/pkg/compiler/lib/src/ssa/nodes.dart
|
| +++ b/pkg/compiler/lib/src/ssa/nodes.dart
|
| @@ -876,6 +876,8 @@ abstract class HInstruction implements Spannable {
|
|
|
| bool isExact() => instructionType.isExact || isNull();
|
|
|
| + bool isValue() => instructionType.isValue;
|
| +
|
| bool canBeNull() => instructionType.isNullable;
|
|
|
| bool isNull() => instructionType.isEmpty && instructionType.isNullable;
|
|
|