| Index: dart/sdk/lib/_internal/compiler/implementation/types/element_type_mask.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/types/element_type_mask.dart b/dart/sdk/lib/_internal/compiler/implementation/types/element_type_mask.dart
|
| index 0ebb9f0a885b10fad823e212451244e1d8993450..75e23452848070b4e6d88a752705ef580e915a15 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/types/element_type_mask.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/types/element_type_mask.dart
|
| @@ -31,6 +31,8 @@ class ElementTypeMask extends ForwardingTypeMask {
|
| return element == other.element && isNullable == other.isNullable;
|
| }
|
|
|
| + int get hashCode => computeHashCode(element, isNullable);
|
| +
|
| bool equalsDisregardNull(other) {
|
| if (other is! ElementTypeMask) return false;
|
| return element == other.element;
|
|
|