| 17 | private: |
| 18 | |
| 19 | explicit Pair(Napi::Env env, const char* name, int index) |
| 20 | : name(Napi::Persistent(InternalizedFromUtf8(env, name, -1))), index(index) {} |
| 21 | |
| 22 | explicit Pair(Napi::Env env, Pair* pair) |
| 23 | : name(Napi::Persistent(pair->name.Value())), index(pair->index) {} |
nothing calls this directly
no test coverage detected