NOLINTNEXTLINE(readability-convert-member-functions-to-static)
| 942 | |
| 943 | return callContext.getContext().newArrayWithValues( |
| 944 | outputSize.begin(), outputSize.size(), callContext.getExceptionTracker()); |
| 945 | } |
| 946 | |
| 947 | JSValueRef JavaScriptRuntime::runtimeSubmitRenderRequest(JSFunctionNativeCallContext& callContext) { |
| 948 | const auto& referenceInfo = callContext.getReferenceInfo(); |
| 949 | auto& exceptionTracker = callContext.getExceptionTracker(); |
| 950 | auto rawRequest = callContext.getParameter(0); |
| 951 | CHECK_CALL_CONTEXT(callContext); |
| 952 | auto callback = callContext.getParameterAsFunction(1); |
| 953 | CHECK_CALL_CONTEXT(callContext); |
| 954 | |
| 955 | // JS code can execute under a context that has already been destroyed (eg. a |
| 956 | // callback firing after a modal is dismissed or a component is torn down). |
nothing calls this directly
no test coverage detected