| 17 | } |
| 18 | |
| 19 | Napi::Value TestStaticMethod(const Napi::CallbackInfo& info) { |
| 20 | std::string str = MaybeUnwrap(info[0].ToString()); |
| 21 | return Napi::String::New(info.Env(), str + " static"); |
| 22 | } |
| 23 | |
| 24 | Napi::Value TestStaticMethodInternal(const Napi::CallbackInfo& info) { |
| 25 | std::string str = MaybeUnwrap(info[0].ToString()); |
nothing calls this directly
no test coverage detected