Do not set constructor name in SetConstructor
This commit is contained in:
parent
4dbe051494
commit
fa483e1fe0
1 changed files with 0 additions and 2 deletions
|
@ -26,12 +26,10 @@ class Wrappable : public WrappableBase {
|
||||||
|
|
||||||
template<typename Sig>
|
template<typename Sig>
|
||||||
static void SetConstructor(v8::Isolate* isolate,
|
static void SetConstructor(v8::Isolate* isolate,
|
||||||
const std::string& name,
|
|
||||||
const base::Callback<Sig>& constructor) {
|
const base::Callback<Sig>& constructor) {
|
||||||
v8::Local<v8::FunctionTemplate> templ = CreateFunctionTemplate(
|
v8::Local<v8::FunctionTemplate> templ = CreateFunctionTemplate(
|
||||||
isolate, base::Bind(&internal::InvokeNew<Sig>, constructor));
|
isolate, base::Bind(&internal::InvokeNew<Sig>, constructor));
|
||||||
templ->InstanceTemplate()->SetInternalFieldCount(1);
|
templ->InstanceTemplate()->SetInternalFieldCount(1);
|
||||||
templ->SetClassName(StringToV8(isolate, name));
|
|
||||||
T::BuildPrototype(isolate, templ);
|
T::BuildPrototype(isolate, templ);
|
||||||
templ_ = new v8::Global<v8::FunctionTemplate>(isolate, templ);
|
templ_ = new v8::Global<v8::FunctionTemplate>(isolate, templ);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue