| 136 | } |
| 137 | |
| 138 | void ThrowRangeErrorCtor(const CallbackInfo& info) { |
| 139 | Napi::Value js_range_err = info[0]; |
| 140 | ReleaseAndWaitForChildProcess(info, 1); |
| 141 | throw Napi::RangeError(info.Env(), js_range_err); |
| 142 | } |
| 143 | |
| 144 | void ThrowEmptyRangeError(const CallbackInfo& info) { |
| 145 | ReleaseAndWaitForChildProcess(info, 1); |
nothing calls this directly
no test coverage detected