| 108 | } |
| 109 | |
| 110 | static Napi::Value TestStaticMethodT(const Napi::CallbackInfo& info) { |
| 111 | return Napi::String::New(info.Env(), s_staticMethodText); |
| 112 | } |
| 113 | |
| 114 | static void TestStaticVoidMethodT(const Napi::CallbackInfo& info) { |
| 115 | s_staticMethodText = MaybeUnwrap(info[0].ToString()); |