Changeset 46598 in webkit for trunk/JavaScriptCore/runtime/JSGlobalObject.h
- Timestamp:
- Jul 30, 2009, 1:57:44 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/JSGlobalObject.h
r45891 r46598 348 348 return m_prototype; 349 349 350 #if USE(JSVALUE32) 350 351 if (typeInfo().type() == StringType) 351 352 return exec->lexicalGlobalObject()->stringPrototype(); … … 353 354 ASSERT(typeInfo().type() == NumberType); 354 355 return exec->lexicalGlobalObject()->numberPrototype(); 356 #else 357 ASSERT(typeInfo().type() == StringType); 358 return exec->lexicalGlobalObject()->stringPrototype(); 359 #endif 355 360 } 356 361
Note:
See TracChangeset
for help on using the changeset viewer.