| 971 | static_cast<int>(callContext.getParameterSize()), |
| 972 | argv)); |
| 973 | } |
| 974 | |
| 975 | Valdi::JSValueRef QuickJSJavaScriptContext::callObjectAsConstructor(const Valdi::JSValue& object, |
| 976 | Valdi::JSFunctionCallContext& callContext) { |
| 977 | auto guard = _threadAccessChecker.guard(); |
| 978 | JSValue argv[callContext.getParameterSize()]; |
| 979 | for (size_t i = 0; i < callContext.getParameterSize(); i++) { |
nothing calls this directly
no test coverage detected