Ignore:
Timestamp:
Oct 16, 2009, 10:52:20 PM (16 years ago)
Author:
[email protected]
Message:

Rolled back in r49717 with the build maybe working now?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/StructureChain.cpp

    r49726 r49734  
    4747}
    4848
    49 bool StructureChain::isCacheable() const
    50 {
    51     uint32_t i = 0;
    52    
    53     while (m_vector[i]) {
    54         // Both classes of dictionary structure may change arbitrarily so we can't cache them
    55         if (m_vector[i]->isDictionary())
    56             return false;
    57         if (m_vector[i++]->typeInfo().overridesGetPropertyNames())
    58             return false;
    59     }
    60     return true;
    61 }
    62 
    6349} // namespace JSC
Note: See TracChangeset for help on using the changeset viewer.