|
|
@ -34,12 +34,8 @@ class TypeResultEnum extends TypeResult { |
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
@override |
|
|
|
bool operator ==(final Object other) => |
|
|
|
bool operator ==(final Object other) => |
|
|
|
other is TypeResultEnum && |
|
|
|
other is TypeResultEnum && other.className == className && other.generics == generics && other.subType == subType; |
|
|
|
other.className == className && |
|
|
|
|
|
|
|
other.generics == generics && |
|
|
|
|
|
|
|
other.nullable == nullable && |
|
|
|
|
|
|
|
other.subType == subType; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@override |
|
|
|
@override |
|
|
|
int get hashCode => className.hashCode + generics.hashCode + nullable.hashCode + subType.hashCode; |
|
|
|
int get hashCode => className.hashCode + generics.hashCode + subType.hashCode; |
|
|
|
} |
|
|
|
} |
|
|
|