| 161 | private: |
| 162 | |
| 163 | static void SetString(Napi::Env env, Napi::Reference<Napi::String>& constant, const char* str) { |
| 164 | constant = Napi::Persistent(InternalizedFromLatin1(env, str)); |
| 165 | } |
| 166 | |
| 167 | void SetCode(Napi::Env env, int code, const char* str) { |
| 168 | codes.emplace(code, Napi::Persistent(InternalizedFromLatin1(env, str))); |
nothing calls this directly
no test coverage detected