| 2058 | } |
| 2059 | |
| 2060 | inline v8::Local<v8::Value> GetFromPersistent(const char *key) const { |
| 2061 | EscapableHandleScope scope; |
| 2062 | return scope.Escape( |
| 2063 | Get(New(persistentHandle), New(key).ToLocalChecked()) |
| 2064 | .FromMaybe(v8::Local<v8::Value>())); |
| 2065 | } |
| 2066 | |
| 2067 | inline v8::Local<v8::Value> |
| 2068 | GetFromPersistent(const v8::Local<v8::String> &key) const { |
nothing calls this directly
no test coverage detected