Changeset 224055 in webkit for trunk/Source/JavaScriptCore/runtime/JSString.cpp
- Timestamp:
- Oct 26, 2017, 3:36:04 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSString.cpp
r222473 r224055 41 41 } 42 42 43 void JSRopeString::RopeBuilder::expand() 44 { 43 template<> 44 void JSRopeString::RopeBuilder<RecordOverflow>::expand() 45 { 46 RELEASE_ASSERT(!this->hasOverflowed()); 45 47 ASSERT(m_index == JSRopeString::s_maxInternalRopeLength); 46 48 JSString* jsString = m_jsString; 47 RELEASE_ASSERT(jsString);48 49 m_jsString = jsStringBuilder(&m_vm); 49 50 m_index = 0;
Note:
See TracChangeset
for help on using the changeset viewer.