| 159 | private: |
| 160 | |
| 161 | static void SetString(v8::Isolate* isolate, v8::Global<v8::String>& constant, const char* str) { |
| 162 | constant.Reset(isolate, InternalizedFromLatin1(isolate, str)); |
| 163 | } |
| 164 | |
| 165 | void SetCode(v8::Isolate* isolate, int code, const char* str) { |
| 166 | codes.emplace(std::piecewise_construct, |
nothing calls this directly
no test coverage detected