Changeset 36756 in webkit for trunk/JavaScriptCore


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.
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r36755 r36756  
     12008-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
    192008-09-21  Maciej Stachowiak  <[email protected]>
    210
  • 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.