| 328 | if (!exceptionTracker) { |
| 329 | return Valdi::JSValueRef(); |
| 330 | } |
| 331 | |
| 332 | auto retainedResult = JS_DupValue(_context, fromValdiJSValue(result.get())); |
| 333 | |
| 334 | return checkCallAndGetValue(exceptionTracker, JS_EvalFunction(_context, retainedResult)); |
| 335 | } |
| 336 | |
| 337 | Valdi::JSValueRef QuickJSJavaScriptContext::evaluate(const std::string& script, |
nothing calls this directly
no test coverage detected