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