| 142 | } |
| 143 | |
| 144 | void ThrowEmptyRangeError(const CallbackInfo& info) { |
| 145 | ReleaseAndWaitForChildProcess(info, 1); |
| 146 | throw RangeError(); |
| 147 | } |
| 148 | |
| 149 | void ThrowRangeError(const CallbackInfo& info) { |
| 150 | std::string message = info[0].As<String>().Utf8Value(); |
nothing calls this directly
no test coverage detected