| 33 | } |
| 34 | |
| 35 | static Napi::FunctionReference Init(Napi::Env env) { |
| 36 | return Napi::Persistent(DefineClass( |
| 37 | env, |
| 38 | "VerboseIndicator", |
| 39 | {InstanceAccessor<&VerboseIndicator::Getter, |
| 40 | &VerboseIndicator::Setter>("verbose")})); |
| 41 | } |
| 42 | }; |
| 43 | |
| 44 | static Napi::Value Getter(const Napi::CallbackInfo& info) { |
nothing calls this directly
no test coverage detected