Changeset 185109 in webkit for trunk/Source/JavaScriptCore/runtime/JSString.h
- Timestamp:
- Jun 2, 2015, 10:36:16 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSString.h
r185002 r185109 143 143 Identifier toIdentifier(ExecState*) const; 144 144 AtomicString toAtomicString(ExecState*) const; 145 AtomicStringImpl*toExistingAtomicString(ExecState*) const;145 RefPtr<AtomicStringImpl> toExistingAtomicString(ExecState*) const; 146 146 StringView view(ExecState*) const; 147 147 const String& value(ExecState*) const; … … 362 362 JS_EXPORT_PRIVATE void resolveRope(ExecState*) const; 363 363 JS_EXPORT_PRIVATE void resolveRopeToAtomicString(ExecState*) const; 364 JS_EXPORT_PRIVATE AtomicStringImpl*resolveRopeToExistingAtomicString(ExecState*) const;364 JS_EXPORT_PRIVATE RefPtr<AtomicStringImpl> resolveRopeToExistingAtomicString(ExecState*) const; 365 365 void resolveRopeSlowCase8(LChar*) const; 366 366 void resolveRopeSlowCase(UChar*) const; … … 468 468 } 469 469 470 ALWAYS_INLINE AtomicStringImpl*JSString::toExistingAtomicString(ExecState* exec) const470 ALWAYS_INLINE RefPtr<AtomicStringImpl> JSString::toExistingAtomicString(ExecState* exec) const 471 471 { 472 472 if (isRope())
Note:
See TracChangeset
for help on using the changeset viewer.