| 22 | } |
| 23 | |
| 24 | NAN_MODULE_INIT(Init) { |
| 25 | Set(target |
| 26 | , New<v8::String>("r").ToLocalChecked() |
| 27 | , GetFunction(New<v8::FunctionTemplate>(TryCatchTest)).ToLocalChecked() |
| 28 | ); |
| 29 | } |
| 30 | |
| 31 | NODE_MODULE(trycatch, Init) |
nothing calls this directly
no test coverage detected