chore: remove unused WrappableBase::AfterInit() (#42974)

last caller removed in 6159066c (#22916)
This commit is contained in:
Charles Kerr 2024-07-22 03:44:21 -05:00 коммит произвёл GitHub
Родитель c72a714dd5
Коммит 8c8a7709e6
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 0 добавлений и 5 удалений

Просмотреть файл

@ -56,8 +56,6 @@ void WrappableBase::InitWith(v8::Isolate* isolate,
v8::Local<v8::Function> init;
if (Dictionary(isolate, wrapper).Get("_init", &init))
init->Call(isolate->GetCurrentContext(), wrapper, 0, nullptr).IsEmpty();
AfterInit(isolate);
}
// static

Просмотреть файл

@ -45,9 +45,6 @@ class WrappableBase {
v8::Isolate* isolate() const { return isolate_; }
protected:
// Called after the "_init" method gets called in JavaScript.
virtual void AfterInit(v8::Isolate* isolate) {}
// Bind the C++ class to the JS wrapper.
// This method should only be called by classes using Constructor.
virtual void InitWith(v8::Isolate* isolate, v8::Local<v8::Object> wrapper);