| 891 | |
| 892 | hermes::vm::CallResult<hermes::vm::PseudoHandle<hermes::vm::HermesValue>> HermesJavaScriptContext::doCall( |
| 893 | hermes::vm::ScopedNativeCallFrame& callFrame, |
| 894 | const hermes::vm::Handle<hermes::vm::Callable>& handle, |
| 895 | JSFunctionCallContext& callContext) { |
| 896 | if (callFrame.overflowed()) { |
| 897 | return _runtime->raiseStackOverflow(hermes::vm::Runtime::StackOverflowKind::NativeStack); |
| 898 | } |
no test coverage detected