Changeset 36756 in webkit for trunk/JavaScriptCore
- Timestamp:
- Sep 21, 2008, 8:35:07 PM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r36755 r36756 1 2008-09-21 Darin Adler <[email protected]> 2 3 - fix debug build 4 5 * kjs/StructureID.cpp: 6 (JSC::StructureID::addPropertyTransition): Use typeInfo().type() instead of m_type. 7 (JSC::StructureID::createCachedPrototypeChain): Ditto. 8 1 9 2008-09-21 Maciej Stachowiak <[email protected]> 2 10 -
trunk/JavaScriptCore/kjs/StructureID.cpp
r36755 r36756 122 122 { 123 123 ASSERT(!structureID->m_isDictionary); 124 ASSERT(structureID-> m_type== ObjectType);124 ASSERT(structureID->typeInfo().type() == ObjectType); 125 125 126 126 if (StructureID* existingTransition = structureID->m_transitionTable.get(make_pair(propertyName.ustring().rep(), attributes))) { … … 203 203 StructureIDChain* StructureID::createCachedPrototypeChain() 204 204 { 205 ASSERT( m_type== ObjectType);205 ASSERT(typeInfo().type() == ObjectType); 206 206 ASSERT(!m_cachedPrototypeChain); 207 207
Note:
See TracChangeset
for help on using the changeset viewer.