summaryrefslogtreecommitdiff
path: root/src/tty_wrap.cc
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2017-08-18 22:37:37 -0700
committerJames M Snell <jasnell@gmail.com>2017-08-23 10:35:34 -0700
commit5e7c69716ecbb7a0ebceaed7cc1c6847f9bc5058 (patch)
treee46aa77686c39196f93a4bf064ca0282188fb67e /src/tty_wrap.cc
parent771a03dfe3dba6ac3136bd4aa25525220e29b0ff (diff)
downloadandroid-node-v8-5e7c69716ecbb7a0ebceaed7cc1c6847f9bc5058.tar.gz
android-node-v8-5e7c69716ecbb7a0ebceaed7cc1c6847f9bc5058.tar.bz2
android-node-v8-5e7c69716ecbb7a0ebceaed7cc1c6847f9bc5058.zip
src: reduce code duplication
Adds `AsyncWrap::AddWrapMethods()` to add common methods to a `Local<FunctionTemplate>`. Follows same pattern as stream base. PR-URL: https://github.com/nodejs/node/pull/14937 Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'src/tty_wrap.cc')
-rw-r--r--src/tty_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tty_wrap.cc b/src/tty_wrap.cc
index 88e9a98264..ee793056c8 100644
--- a/src/tty_wrap.cc
+++ b/src/tty_wrap.cc
@@ -56,7 +56,7 @@ void TTYWrap::Initialize(Local<Object> target,
t->SetClassName(ttyString);
t->InstanceTemplate()->SetInternalFieldCount(1);
- env->SetProtoMethod(t, "getAsyncId", AsyncWrap::GetAsyncId);
+ AsyncWrap::AddWrapMethods(env, t);
env->SetProtoMethod(t, "close", HandleWrap::Close);
env->SetProtoMethod(t, "unref", HandleWrap::Unref);