Changeset 36291 in webkit for trunk/JavaScriptCore/kjs/identifier.h
- Timestamp:
- Sep 9, 2008, 2:00:58 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/kjs/identifier.h
r36263 r36291 93 93 { 94 94 if (r->identifierTable()) { 95 #ifndef NDEBUG 95 96 checkSameIdentifierTable(exec, r); 97 #endif 96 98 return r; 97 99 } … … 101 103 { 102 104 if (r->identifierTable()) { 105 #ifndef NDEBUG 103 106 checkSameIdentifierTable(globalData, r); 107 #endif 104 108 return r; 105 109 } … … 132 136 void deleteIdentifierTable(IdentifierTable*); 133 137 134 #ifdef NDEBUG135 inline void Identifier::checkSameIdentifierTable(ExecState*, UString::Rep*) { }136 inline void Identifier::checkSameIdentifierTable(JSGlobalData*, UString::Rep*) { }137 #endif138 139 138 } // namespace JSC 140 139
Note:
See TracChangeset
for help on using the changeset viewer.