| 1926 | } |
| 1927 | |
| 1928 | void ScriptEngine::ClearParkStorage() |
| 1929 | { |
| 1930 | if (_replContext) |
| 1931 | { |
| 1932 | JS_FreeValue(_replContext, _parkStorage); |
| 1933 | _parkStorage = JS_NewObject(_replContext); |
| 1934 | } |
| 1935 | } |
| 1936 | |
| 1937 | std::string ScriptEngine::GetParkStorageAsJSON() |
| 1938 | { |
no outgoing calls
no test coverage detected