| 34 | } |
| 35 | |
| 36 | NAN_MODULE_INIT(Init) { |
| 37 | Set(target |
| 38 | , New<v8::String>("hook").ToLocalChecked() |
| 39 | , GetFunction(New<v8::FunctionTemplate>(Hook)).ToLocalChecked() |
| 40 | ); |
| 41 | Set(target |
| 42 | , New<v8::String>("check").ToLocalChecked() |
| 43 | , GetFunction(New<v8::FunctionTemplate>(Check)).ToLocalChecked() |
| 44 | ); |
| 45 | } |
| 46 | |
| 47 | NODE_MODULE(gc, Init) |
nothing calls this directly
no test coverage detected