isSubsetOf method
Checks if this value is less than or equal to another (⊑).
Implementation
@override
bool isSubsetOf(NullabilityDomain other) {
if (isBottom) return true;
if (other.isTop) return true;
return state == other.state;
}
Checks if this value is less than or equal to another (⊑).
@override
bool isSubsetOf(NullabilityDomain other) {
if (isBottom) return true;
if (other.isTop) return true;
return state == other.state;
}