Ignore:
Timestamp:
Jul 30, 2009, 1:57:44 PM (16 years ago)
Author:
[email protected]
Message:

Merged nitro-extreme branch into trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/runtime/JSGlobalObject.h

    r45891 r46598  
    348348            return m_prototype;
    349349
     350#if USE(JSVALUE32)
    350351        if (typeInfo().type() == StringType)
    351352            return exec->lexicalGlobalObject()->stringPrototype();
     
    353354        ASSERT(typeInfo().type() == NumberType);
    354355        return exec->lexicalGlobalObject()->numberPrototype();
     356#else
     357        ASSERT(typeInfo().type() == StringType);
     358        return exec->lexicalGlobalObject()->stringPrototype();
     359#endif
    355360    }
    356361
Note: See TracChangeset for help on using the changeset viewer.