| 22 | } |
| 23 | |
| 24 | Napi::Value TestStaticMethodInternal(const Napi::CallbackInfo& info) { |
| 25 | std::string str = MaybeUnwrap(info[0].ToString()); |
| 26 | return Napi::String::New(info.Env(), str + " static internal"); |
| 27 | } |
| 28 | |
| 29 | class Test : public Napi::ObjectWrap<Test> { |
| 30 | public: |
nothing calls this directly
no test coverage detected