Ignore:
Timestamp:
Sep 21, 2008, 8:35:07 PM (17 years ago)
Author:
Darin Adler
Message:

2008-09-21 Darin Adler <Darin Adler>

  • fix debug build
  • kjs/StructureID.cpp: (JSC::StructureID::addPropertyTransition): Use typeInfo().type() instead of m_type. (JSC::StructureID::createCachedPrototypeChain): Ditto.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/kjs/StructureID.cpp

    r36755 r36756  
    122122{
    123123    ASSERT(!structureID->m_isDictionary);
    124     ASSERT(structureID->m_type == ObjectType);
     124    ASSERT(structureID->typeInfo().type() == ObjectType);
    125125
    126126    if (StructureID* existingTransition = structureID->m_transitionTable.get(make_pair(propertyName.ustring().rep(), attributes))) {
     
    203203StructureIDChain* StructureID::createCachedPrototypeChain()
    204204{
    205     ASSERT(m_type == ObjectType);
     205    ASSERT(typeInfo().type() == ObjectType);
    206206    ASSERT(!m_cachedPrototypeChain);
    207207
Note: See TracChangeset for help on using the changeset viewer.