Changeset 173326 in webkit for trunk/Source/JavaScriptCore/API/OpaqueJSString.h
- Timestamp:
- Sep 5, 2014, 12:33:29 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/API/OpaqueJSString.h
r173263 r173326 56 56 JS_EXPORT_PRIVATE ~OpaqueJSString(); 57 57 58 bool is8Bit() { return this ? m_string.is8Bit() : false; }59 const LChar* characters8() { return this ? m_string.characters8() : nullptr; }60 const UChar* characters16() { return this ? m_string.characters16() : nullptr; }61 unsigned length() { return this ? m_string.length() : 0; }58 bool is8Bit() { return m_string.is8Bit(); } 59 const LChar* characters8() { return m_string.characters8(); } 60 const UChar* characters16() { return m_string.characters16(); } 61 unsigned length() { return m_string.length(); } 62 62 63 63 const UChar* characters();
Note:
See TracChangeset
for help on using the changeset viewer.