Changeset 77098 in webkit for trunk/Source/JavaScriptCore/runtime/Structure.h
- Timestamp:
- Jan 30, 2011, 5:13:10 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/Structure.h
r77044 r77098 81 81 static PassRefPtr<Structure> toUncacheableDictionaryTransition(Structure*); 82 82 83 PassRefPtr<Structure> flattenDictionaryStructure(JS Object*);83 PassRefPtr<Structure> flattenDictionaryStructure(JSGlobalData&, JSObject*); 84 84 85 85 ~Structure(); … … 95 95 const TypeInfo& typeInfo() const { return m_typeInfo; } 96 96 97 JSValue storedPrototype() const { return m_prototype; } 97 JSValue storedPrototype() const { return m_prototype.get(); } 98 DeprecatedPtr<Unknown>* storedPrototypeSlot() { return &m_prototype; } 98 99 JSValue prototypeForLookup(ExecState*) const; 99 100 StructureChain* prototypeChain(ExecState*) const; … … 207 208 TypeInfo m_typeInfo; 208 209 209 JSValuem_prototype;210 DeprecatedPtr<Unknown> m_prototype; 210 211 mutable RefPtr<StructureChain> m_cachedPrototypeChain; 211 212
Note:
See TracChangeset
for help on using the changeset viewer.