diff --git a/deps/v8/include/v8.h b/deps/v8/include/v8.h index a3715211f03d3b..fe374089f67706 100644 --- a/deps/v8/include/v8.h +++ b/deps/v8/include/v8.h @@ -366,8 +366,8 @@ template class Eternal { Set(isolate, handle); } // Can only be safely called if already set. - V8_INLINE Local Get(Isolate* isolate); - V8_INLINE bool IsEmpty() { return index_ == kInitialValue; } + V8_INLINE Local Get(Isolate* isolate) const; + V8_INLINE bool IsEmpty() const { return index_ == kInitialValue; } template V8_INLINE void Set(Isolate* isolate, Local handle); private: @@ -8604,9 +8604,8 @@ void Eternal::Set(Isolate* isolate, Local handle) { V8::Eternalize(isolate, reinterpret_cast(*handle), &this->index_); } - -template -Local Eternal::Get(Isolate* isolate) { +template +Local Eternal::Get(Isolate* isolate) const { return Local(reinterpret_cast(*V8::GetEternal(isolate, index_))); }