diff options
author | Anna Henningsen <anna@addaleax.net> | 2017-03-31 22:35:54 +0200 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2017-04-03 10:08:26 +0200 |
commit | 3cc3e099be79274a188b2ce32f9cabddfc58ea8d (patch) | |
tree | 1752dfd73010f4d84c3f2bb3b2912e31b9e7a7f4 /src/node_util.cc | |
parent | 91383e47fdbb87ae45365396dd0150dcad8ed967 (diff) | |
download | node-new-3cc3e099be79274a188b2ce32f9cabddfc58ea8d.tar.gz |
util: show External values explicitly in inspect
Display `v8::External` values as `[External]` rather than `{}`
which makes them look like objects.
PR-URL: https://github.com/nodejs/node/pull/12151
Reviewed-By: Timothy Gu <timothygu99@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Diffstat (limited to 'src/node_util.cc')
-rw-r--r-- | src/node_util.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/node_util.cc b/src/node_util.cc index 8279a787d7..813995de79 100644 --- a/src/node_util.cc +++ b/src/node_util.cc @@ -22,6 +22,7 @@ using v8::Value; V(isArrayBuffer, IsArrayBuffer) \ V(isDataView, IsDataView) \ V(isDate, IsDate) \ + V(isExternal, IsExternal) \ V(isMap, IsMap) \ V(isMapIterator, IsMapIterator) \ V(isPromise, IsPromise) \ |