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:
authorJames M Snell <jasnell@gmail.com>2020-12-15 22:52:17 +0300
committerJames M Snell <jasnell@gmail.com>2021-01-03 23:58:09 +0300
commit28fe1ef63512acd40cfd1dd15918db494c92f45f (patch)
treefb65e10e0c966e2484a3f2151870738499d575b7 /src/udp_wrap.cc
parent7cfa1bee418696c1c97c1f2466520ab4f4cc8791 (diff)
src: reduce duplicated boilerplate with new env utility fn
Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/36536 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Diffstat (limited to 'src/udp_wrap.cc')
-rw-r--r--src/udp_wrap.cc15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/udp_wrap.cc b/src/udp_wrap.cc
index 26bafebcb22..e746f62c5ed 100644
--- a/src/udp_wrap.cc
+++ b/src/udp_wrap.cc
@@ -43,7 +43,6 @@ using v8::Object;
using v8::PropertyAttribute;
using v8::ReadOnly;
using v8::Signature;
-using v8::String;
using v8::Uint32;
using v8::Undefined;
using v8::Value;
@@ -134,9 +133,6 @@ void UDPWrap::Initialize(Local<Object> target,
Local<FunctionTemplate> t = env->NewFunctionTemplate(New);
t->InstanceTemplate()->SetInternalFieldCount(
UDPWrapBase::kInternalFieldCount);
- Local<String> udpString =
- FIXED_ONE_BYTE_STRING(env->isolate(), "UDP");
- t->SetClassName(udpString);
enum PropertyAttribute attributes =
static_cast<PropertyAttribute>(ReadOnly | DontDelete);
@@ -182,9 +178,7 @@ void UDPWrap::Initialize(Local<Object> target,
t->Inherit(HandleWrap::GetConstructorTemplate(env));
- target->Set(env->context(),
- udpString,
- t->GetFunction(env->context()).ToLocalChecked()).Check();
+ env->SetConstructorFunction(target, "UDP", t);
env->set_udp_constructor_function(
t->GetFunction(env->context()).ToLocalChecked());
@@ -192,12 +186,7 @@ void UDPWrap::Initialize(Local<Object> target,
Local<FunctionTemplate> swt =
BaseObject::MakeLazilyInitializedJSTemplate(env);
swt->Inherit(AsyncWrap::GetConstructorTemplate(env));
- Local<String> sendWrapString =
- FIXED_ONE_BYTE_STRING(env->isolate(), "SendWrap");
- swt->SetClassName(sendWrapString);
- target->Set(env->context(),
- sendWrapString,
- swt->GetFunction(env->context()).ToLocalChecked()).Check();
+ env->SetConstructorFunction(target, "SendWrap", swt);
Local<Object> constants = Object::New(env->isolate());
NODE_DEFINE_CONSTANT(constants, UV_UDP_IPV6ONLY);