summaryrefslogtreecommitdiff
path: root/src/env.h
diff options
context:
space:
mode:
authorAnna Henningsen <anna@addaleax.net>2018-07-27 14:35:39 +0200
committerAnna Henningsen <anna@addaleax.net>2018-08-05 13:46:13 +0200
commitaf7164ebccd21d9fc5b0782e0427257f7637a4db (patch)
tree589f506811cb65293b88fcd8984ae7ac0e5a80be /src/env.h
parenta196aa2e24ef7069289fa4a9aa8c6862d82e6b5f (diff)
downloadandroid-node-v8-af7164ebccd21d9fc5b0782e0427257f7637a4db.tar.gz
android-node-v8-af7164ebccd21d9fc5b0782e0427257f7637a4db.tar.bz2
android-node-v8-af7164ebccd21d9fc5b0782e0427257f7637a4db.zip
lib,src: standardize `owner_symbol` for handles
Instead of somtimes using an `owner` string to link from a native handle object to the corresponding JS object, standardize on a single symbol that fulfills this role. PR-URL: https://github.com/nodejs/node/pull/22002 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Ali Ijaz Sheikh <ofrobots@google.com>
Diffstat (limited to 'src/env.h')
-rw-r--r--src/env.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/env.h b/src/env.h
index 8e6da729c4..290ac89fb5 100644
--- a/src/env.h
+++ b/src/env.h
@@ -111,6 +111,7 @@ struct PackageConfig {
// for the sake of convenience.
#define PER_ISOLATE_SYMBOL_PROPERTIES(V) \
V(handle_onclose_symbol, "handle_onclose") \
+ V(owner_symbol, "owner") \
// Strings are per-isolate primitives but Environment proxies them
// for the sake of convenience. Strings should be ASCII-only.
@@ -234,7 +235,6 @@ struct PackageConfig {
V(openssl_error_stack, "opensslErrorStack") \
V(output_string, "output") \
V(order_string, "order") \
- V(owner_string, "owner") \
V(parse_error_string, "Parse Error") \
V(password_string, "password") \
V(path_string, "path") \