Changeset 36756 in webkit for trunk/JavaScriptCore/kjs/StructureID.cpp
- Timestamp:
- Sep 21, 2008, 8:35:07 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.