]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - runtime/JSDestructibleObject.h
JavaScriptCore-7601.1.46.3.tar.gz
[apple/javascriptcore.git] / runtime / JSDestructibleObject.h
index 27dc06da5c4b9b29a6c2450222d11e2c60a0aa9b..d687b84201783cab23e10c31d2186b16d2339707 100644 (file)
@@ -29,17 +29,6 @@ private:
     const ClassInfo* m_classInfo;
 };
 
-inline const ClassInfo* JSCell::classInfo() const
-{
-    if (MarkedBlock::blockFor(this)->destructorType() == MarkedBlock::Normal)
-        return static_cast<const JSDestructibleObject*>(this)->classInfo();
-#if ENABLE(GC_VALIDATION)
-    return m_structure.unvalidatedGet()->classInfo();
-#else
-    return m_structure->classInfo();
-#endif
-}
-
 } // namespace JSC
 
 #endif