| 75 | } |
| 76 | |
| 77 | Napi::Value TestMethod(const Napi::CallbackInfo& info) { |
| 78 | std::string str = MaybeUnwrap(info[0].ToString()); |
| 79 | return Napi::String::New(info.Env(), str + " instance"); |
| 80 | } |
| 81 | |
| 82 | Napi::Value TestMethodInternal(const Napi::CallbackInfo& info) { |
| 83 | std::string str = MaybeUnwrap(info[0].ToString()); |
nothing calls this directly
no test coverage detected