summaryrefslogtreecommitdiff
path: root/src/udp_wrap.cc
diff options
context:
space:
mode:
authorAndreas Haas <ahaas@google.com>2018-09-21 13:13:35 +0200
committerDaniel Bevenius <daniel.bevenius@gmail.com>2018-09-24 05:44:28 +0200
commit7dde560beb736e82b7867130a2d5824544122a60 (patch)
treec34d8cdc7be51ceee11ed3160e49acd1270319de /src/udp_wrap.cc
parenta0c1326257b9679b056d8611ccdee2d6757b0bf0 (diff)
downloadandroid-node-v8-7dde560beb736e82b7867130a2d5824544122a60.tar.gz
android-node-v8-7dde560beb736e82b7867130a2d5824544122a60.tar.bz2
android-node-v8-7dde560beb736e82b7867130a2d5824544122a60.zip
src: replace deprecated uses of FunctionTemplate::GetFunction
PR-URL: https://github.com/nodejs/node/pull/22993 Reviewed-By: Michaƫl Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Eugene Ostroukhov <eostroukhov@google.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/udp_wrap.cc')
-rw-r--r--src/udp_wrap.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/udp_wrap.cc b/src/udp_wrap.cc
index 8005eeb9ff..510926abde 100644
--- a/src/udp_wrap.cc
+++ b/src/udp_wrap.cc
@@ -138,8 +138,9 @@ void UDPWrap::Initialize(Local<Object> target,
AsyncWrap::AddWrapMethods(env, t);
HandleWrap::AddWrapMethods(env, t);
- target->Set(udpString, t->GetFunction());
- env->set_udp_constructor_function(t->GetFunction());
+ target->Set(udpString, t->GetFunction(env->context()).ToLocalChecked());
+ env->set_udp_constructor_function(
+ t->GetFunction(env->context()).ToLocalChecked());
// Create FunctionTemplate for SendWrap
Local<FunctionTemplate> swt =
@@ -148,7 +149,8 @@ void UDPWrap::Initialize(Local<Object> target,
Local<String> sendWrapString =
FIXED_ONE_BYTE_STRING(env->isolate(), "SendWrap");
swt->SetClassName(sendWrapString);
- target->Set(sendWrapString, swt->GetFunction());
+ target->Set(sendWrapString,
+ swt->GetFunction(env->context()).ToLocalChecked());
}