Changeset 45039 in webkit for trunk/JavaScriptCore/runtime/StructureChain.cpp
- Timestamp:
- Jun 23, 2009, 7:47:48 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/StructureChain.cpp
r44224 r45039 47 47 } 48 48 49 bool StructureChain::isCacheable() const 50 { 51 uint32_t i = 0; 52 53 while (m_vector[i]) { 54 if (m_vector[i++]->isDictionary()) 55 return false; 56 } 57 return true; 58 } 59 49 60 } // namespace JSC
Note:
See TracChangeset
for help on using the changeset viewer.