Changeset 165719 in webkit for trunk/Source/JavaScriptCore/API/OpaqueJSString.cpp
- Timestamp:
- Mar 16, 2014, 11:15:51 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/OpaqueJSString.cpp
r165703 r165719 72 72 return Identifier(Identifier::EmptyIdentifier); 73 73 74 return Identifier(vm, m_string); 74 if (m_string.is8Bit()) 75 return Identifier(vm, m_string.characters8(), m_string.length()); 76 77 return Identifier(vm, m_string.characters16(), m_string.length()); 75 78 } 76 79
Note:
See TracChangeset
for help on using the changeset viewer.