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

Unified Diff: runtime/vm/object.h

Issue 358723002: Add Instance::HashCode that matches hashCode. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 6 months 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
« no previous file with comments | « runtime/vm/dart_entry.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 37709)
+++ runtime/vm/object.h (working copy)
@@ -4248,6 +4248,9 @@
const Array& param_names,
const Array& param_values) const;
+ // Equivalent to invoking hashCode on this instance.
+ virtual RawObject* HashCode() const;
+
static intptr_t InstanceSize() {
return RoundedAllocationSize(sizeof(RawInstance));
}
@@ -4946,6 +4949,8 @@
return false;
}
+ virtual RawObject* HashCode() const { return raw(); }
+
// Integer is an abstract class.
virtual bool IsZero() const {
UNREACHABLE();
@@ -5317,6 +5322,8 @@
static intptr_t Hash(const uint16_t* characters, intptr_t len);
static intptr_t Hash(const int32_t* characters, intptr_t len);
+ virtual RawObject* HashCode() const { return Integer::New(Hash()); }
+
int32_t CharAt(intptr_t index) const;
Scanner::CharAtFunc CharAtFunc() const;
« no previous file with comments | « runtime/vm/dart_entry.cc ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698