Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(461)

Unified Diff: frog/member.dart

Issue 8548019: Add a script for determining which DOM methods correspond to which HTML methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More code review changes Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: frog/member.dart
diff --git a/frog/member.dart b/frog/member.dart
index 12d45a9b49890c5e8ebc5a1fd12fc38055a10871..9d9e51028157317a24a337c9a7bc1985ca638c7b 100644
--- a/frog/member.dart
+++ b/frog/member.dart
@@ -210,6 +210,8 @@ class Member implements Named {
}
return type;
}
+
+ int hashCode() => (declaringType.hashCode() << 4) ^ name.hashCode();
}

Powered by Google App Engine
This is Rietveld 408576698