summaryrefslogtreecommitdiff
path: root/src/handle_wrap.h
diff options
context:
space:
mode:
authorJeremiah Senkpiel <fishrock123@rocketmail.com>2016-05-09 17:02:59 -0400
committerJeremiah Senkpiel <fishrock123@rocketmail.com>2016-05-11 17:43:57 -0400
commitfe4837afcc17566a44a7744fb77c195e7b3bf2fd (patch)
treed968998219b5dd7149f695a48bdf347e19654137 /src/handle_wrap.h
parent96a9439fd2c9577a735d6abf01990b45b836fba2 (diff)
downloadandroid-node-v8-fe4837afcc17566a44a7744fb77c195e7b3bf2fd.tar.gz
android-node-v8-fe4837afcc17566a44a7744fb77c195e7b3bf2fd.tar.bz2
android-node-v8-fe4837afcc17566a44a7744fb77c195e7b3bf2fd.zip
handle_wrap: IsRefed() -> HasRef()
Rename slightly to HasRef() at bnoordhuis’ request. Better reflects what we actually do for this check. Refs: https://github.com/nodejs/node/pull/6395 Refs: https://github.com/nodejs/node/pull/6204 Refs: https://github.com/nodejs/node/pull/6401 Refs: https://github.com/nodejs/node/pull/6382 Refs: https://github.com/nodejs/node/pull/6381 PR-URL: https://github.com/nodejs/node/pull/6546 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Trevor Norris <trev.norris@gmail.com>
Diffstat (limited to 'src/handle_wrap.h')
-rw-r--r--src/handle_wrap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/handle_wrap.h b/src/handle_wrap.h
index 506358c140..49b36f80f9 100644
--- a/src/handle_wrap.h
+++ b/src/handle_wrap.h
@@ -35,7 +35,7 @@ class HandleWrap : public AsyncWrap {
static void Close(const v8::FunctionCallbackInfo<v8::Value>& args);
static void Ref(const v8::FunctionCallbackInfo<v8::Value>& args);
static void Unref(const v8::FunctionCallbackInfo<v8::Value>& args);
- static void IsRefed(const v8::FunctionCallbackInfo<v8::Value>& args);
+ static void HasRef(const v8::FunctionCallbackInfo<v8::Value>& args);
static inline bool IsAlive(const HandleWrap* wrap) {
return wrap != nullptr && wrap->state_ != kClosed;