Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/node_watchdog.cc')
-rw-r--r--src/node_watchdog.cc9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/node_watchdog.cc b/src/node_watchdog.cc
index 8bd3b283b53..ff2a0229087 100644
--- a/src/node_watchdog.cc
+++ b/src/node_watchdog.cc
@@ -124,19 +124,12 @@ void TraceSigintWatchdog::Init(Environment* env, Local<Object> target) {
Local<FunctionTemplate> constructor = env->NewFunctionTemplate(New);
constructor->InstanceTemplate()->SetInternalFieldCount(
TraceSigintWatchdog::kInternalFieldCount);
- Local<v8::String> js_sigint_watch_dog =
- FIXED_ONE_BYTE_STRING(env->isolate(), "TraceSigintWatchdog");
- constructor->SetClassName(js_sigint_watch_dog);
constructor->Inherit(HandleWrap::GetConstructorTemplate(env));
env->SetProtoMethod(constructor, "start", Start);
env->SetProtoMethod(constructor, "stop", Stop);
- target
- ->Set(env->context(),
- js_sigint_watch_dog,
- constructor->GetFunction(env->context()).ToLocalChecked())
- .Check();
+ env->SetConstructorFunction(target, "TraceSigintWatchdog", constructor);
}
void TraceSigintWatchdog::New(const FunctionCallbackInfo<Value>& args) {