| 165 | } |
| 166 | |
| 167 | void SetCode(Napi::Env env, int code, const char* str) { |
| 168 | codes.emplace(code, Napi::Persistent(InternalizedFromLatin1(env, str))); |
| 169 | } |
| 170 | |
| 171 | std::unordered_map<int, Napi::Reference<Napi::String>> codes; |
| 172 | }; |
nothing calls this directly
no test coverage detected