Changeset 53151 in webkit for trunk/JavaScriptCore/runtime/Identifier.cpp
- Timestamp:
- Jan 12, 2010, 11:42:07 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Identifier.cpp
r52859 r53151 248 248 void Identifier::checkSameIdentifierTable(ExecState* exec, UString::Rep*) 249 249 { 250 ASSERT (exec->globalData().identifierTable == currentIdentifierTable());250 ASSERT_UNUSED(exec, exec->globalData().identifierTable == currentIdentifierTable()); 251 251 } 252 252 253 253 void Identifier::checkSameIdentifierTable(JSGlobalData* globalData, UString::Rep*) 254 254 { 255 ASSERT (globalData->identifierTable == currentIdentifierTable());255 ASSERT_UNUSED(globalData, globalData->identifierTable == currentIdentifierTable()); 256 256 } 257 257
Note:
See TracChangeset
for help on using the changeset viewer.