Changeset 235491 in webkit for trunk/Source/JavaScriptCore/runtime/JSString.cpp
- Timestamp:
- Aug 29, 2018, 6:20:20 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSString.cpp
r233765 r235491 179 179 void JSRopeString::resolveRopeToAtomicString(ExecState* exec) const 180 180 { 181 VM& vm = exec->vm(); 182 auto scope = DECLARE_THROW_SCOPE(vm); 183 181 184 if (length() > maxLengthForOnStackResolve) { 182 185 resolveRope(exec); 186 RETURN_IF_EXCEPTION(scope, void()); 183 187 m_value = AtomicString(m_value); 184 188 setIs8Bit(m_value.impl()->is8Bit());
Note:
See TracChangeset
for help on using the changeset viewer.