Changeset 243323 in webkit for trunk/Source/JavaScriptCore/bindings/ScriptValue.cpp
- Timestamp:
- Mar 21, 2019, 1:47:34 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/bindings/ScriptValue.cpp
r243163 r243323 75 75 inspectorArray->pushValue(WTFMove(elementValue)); 76 76 } 77 return inspectorArray;77 return RefPtr<JSON::Value> { WTFMove(inspectorArray) }; 78 78 } 79 79 VM& vm = scriptState.vm(); … … 88 88 inspectorObject->setValue(name.string(), WTFMove(inspectorValue)); 89 89 } 90 return inspectorObject;90 return RefPtr<JSON::Value> { WTFMove(inspectorObject) }; 91 91 } 92 92
Note:
See TracChangeset
for help on using the changeset viewer.