| 13 | } |
| 14 | |
| 15 | void StaticMethodVoidCb(const Napi::CallbackInfo& info) { |
| 16 | StaticSetter(info, info[0].As<Napi::Number>()); |
| 17 | } |
| 18 | |
| 19 | Napi::Value TestStaticMethod(const Napi::CallbackInfo& info) { |
| 20 | std::string str = MaybeUnwrap(info[0].ToString()); |
nothing calls this directly
no test coverage detected