Changeset 230026 in webkit for trunk/Source/JavaScriptCore/runtime/JSONObject.cpp
- Timestamp:
- Mar 28, 2018, 2:36:44 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSONObject.cpp
r229410 r230026 358 358 const String& string = asString(value)->value(m_exec); 359 359 RETURN_IF_EXCEPTION(scope, StringifyFailed); 360 builder.appendQuotedJSONString(string); 361 return StringifySucceeded; 360 if (builder.appendQuotedJSONString(string)) 361 return StringifySucceeded; 362 throwOutOfMemoryError(m_exec, scope); 363 return StringifyFailed; 362 364 } 363 365
Note:
See TracChangeset
for help on using the changeset viewer.