Changeset 36310 in webkit for trunk/JavaScriptCore/kjs/PropertyMap.h
- Timestamp:
- Sep 9, 2008, 7:36:47 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/PropertyMap.h
r36306 r36310 102 102 103 103 unsigned size() const { return m_table ? m_table->size : 0; } 104 unsigned ma kingCount() const { return m_table ? m_table->keyCount + m_table->deletedSentinelCount : 0; }104 unsigned markingCount() const { return m_table ? m_table->keyCount + m_table->deletedSentinelCount : 0; } 105 105 106 106 void resizePropertyStorage(PropertyStorage&, unsigned oldSize); … … 110 110 typedef PropertyMapHashTable Table; 111 111 112 static bool keysMatch(const UString::Rep*, const UString::Rep*);113 112 void expand(PropertyStorage&); 114 113 void rehash(PropertyStorage&);
Note:
See TracChangeset
for help on using the changeset viewer.