]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - runtime/StructureChain.cpp
JavaScriptCore-621.1.tar.gz
[apple/javascriptcore.git] / runtime / StructureChain.cpp
index e83f626ab1b134be7e397dcf73092d03ce573273..085876c496b54ea5d5f0a072b1f07fd88677e65d 100644 (file)
@@ -46,16 +46,4 @@ StructureChain::StructureChain(Structure* head)
     m_vector[i] = 0;
 }
 
-bool StructureChain::isCacheable() const
-{
-    uint32_t i = 0;
-    
-    while (m_vector[i]) {
-        // Both classes of dictionary structure may change arbitrarily so we can't cache them
-        if (m_vector[i++]->isDictionary())
-            return false;
-    }
-    return true;
-}
-
 } // namespace JSC