Index: sdk/lib/_internal/compiler/implementation/lib/js_helper.dart |
diff --git a/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart b/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart |
index 8e9dbb1d3049b63bb4315684e785c763713ae8c1..7f3e2e111601712192b5b089e0d4e72575482d1e 100644 |
--- a/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart |
+++ b/sdk/lib/_internal/compiler/implementation/lib/js_helper.dart |
@@ -1486,6 +1486,7 @@ class TypeImpl implements Type { |
final String typeName; |
TypeImpl(this.typeName); |
toString() => typeName; |
+ int get hashCode => typeName.hashCode; |
bool operator ==(other) { |
if (other is !TypeImpl) return false; |
return typeName == other.typeName; |