Changeset 54510 in webkit for trunk/JavaScriptCore/runtime/Identifier.cpp
- Timestamp:
- Feb 8, 2010, 2:26:59 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/Identifier.cpp
r54464 r54510 124 124 PassRefPtr<UString::Rep> Identifier::add(JSGlobalData* globalData, const char* c) 125 125 { 126 if (!c) { 127 UString::Rep* rep = UString::null().rep(); 128 rep->hash(); 129 return rep; 130 } 126 ASSERT(c); 127 131 128 if (!c[0]) { 132 129 UString::Rep::empty().hash();
Note:
See TracChangeset
for help on using the changeset viewer.