| 58 | } |
| 59 | |
| 60 | static void DeleteAddon(Napi::Env, Addon* addon, uint32_t* hint) { |
| 61 | delete addon; |
| 62 | fprintf(stderr, "hint: %u\n", *hint); |
| 63 | delete hint; |
| 64 | } |
| 65 | |
| 66 | static Napi::Object Init(Napi::Env env, Napi::Value jshint) { |
| 67 | if (!jshint.IsNumber()) { |
nothing calls this directly
no outgoing calls
no test coverage detected