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

Unified Diff: runtime/vm/hash_map.h

Issue 395943003: Support allocation sinking for compound objects. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 5 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
Index: runtime/vm/hash_map.h
diff --git a/runtime/vm/hash_map.h b/runtime/vm/hash_map.h
index babaecae089005d40874837745e2cb7c34f5558b..29a9fe704248be61a7bc97c063e6ad08a0f1b715 100644
--- a/runtime/vm/hash_map.h
+++ b/runtime/vm/hash_map.h
@@ -26,6 +26,8 @@ class DirectChainedHashMap: public ValueObject {
typename KeyValueTrait::Value Lookup(typename KeyValueTrait::Key key) const;
+ intptr_t size() const { return count_; }
Florian Schneider 2014/07/16 15:02:03 this seems unused?
Vyacheslav Egorov (Google) 2014/07/17 17:03:48 Done.
+
bool IsEmpty() const { return count_ == 0; }
void Clear() {

Powered by Google App Engine
This is Rietveld 408576698