Changeset 223731 in webkit for trunk/Source/JavaScriptCore/runtime/JSONObject.cpp
- Timestamp:
- Oct 19, 2017, 5:47:04 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/runtime/JSONObject.cpp
r222473 r223731 356 356 357 357 if (value.isString()) { 358 builder.appendQuotedJSONString(asString(value)->value(m_exec)); 358 const String& string = asString(value)->value(m_exec); 359 RETURN_IF_EXCEPTION(scope, StringifyFailed); 360 builder.appendQuotedJSONString(string); 359 361 return StringifySucceeded; 360 362 }
Note:
See TracChangeset
for help on using the changeset viewer.