Changeset 136246 in webkit for trunk/Source/JavaScriptCore/API/OpaqueJSString.cpp
- Timestamp:
- Nov 30, 2012, 8:59:03 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/OpaqueJSString.cpp
r130931 r136246 51 51 Identifier OpaqueJSString::identifier(JSGlobalData* globalData) const 52 52 { 53 if (!this || !m_string.length()) 54 return Identifier(globalData, static_cast<const char*>(0)); 53 if (!this || m_string.isNull()) 54 return Identifier(); 55 56 if (m_string.isEmpty()) 57 return Identifier(Identifier::EmptyIdentifier); 55 58 56 59 if (m_string.is8Bit())
Note:
See TracChangeset
for help on using the changeset viewer.