]> git.saurik.com Git - apple/javascriptcore.git/blobdiff - runtime/StructureChain.h
JavaScriptCore-584.tar.gz
[apple/javascriptcore.git] / runtime / StructureChain.h
index c48749d29be302f6733162ec4c972b2c4e5340b7..816b66d5051550bceb2b4efa27e51419e2d9a33f 100644 (file)
@@ -36,10 +36,11 @@ namespace JSC {
     class Structure;
 
     class StructureChain : public RefCounted<StructureChain> {
+        friend class JIT;
+
     public:
         static PassRefPtr<StructureChain> create(Structure* head) { return adoptRef(new StructureChain(head)); }
         RefPtr<Structure>* head() { return m_vector.get(); }
-        bool isCacheable() const;
 
     private:
         StructureChain(Structure* head);