diff options
author | Anto Aravinth <anto.aravinth.cse@gmail.com> | 2018-09-04 19:43:25 +0530 |
---|---|---|
committer | Anna Henningsen <anna@addaleax.net> | 2018-09-18 13:29:55 +0200 |
commit | dcc0c2c5c9d5bd97cc3df7fe7fd7f34c96e53b5b (patch) | |
tree | 482a3945b82a6e95f3190207c521c2357fe19b6a /test/sequential | |
parent | 9ccf5c8954b8260d1a016c9b1442012ad8626bea (diff) | |
download | node-new-dcc0c2c5c9d5bd97cc3df7fe7fd7f34c96e53b5b.tar.gz |
lib: move process.binding('js_stream') to internalBinding
PR-URL: https://github.com/nodejs/node/pull/22239
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Reviewed-By: John-David Dalton <john.david.dalton@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to 'test/sequential')
-rw-r--r-- | test/sequential/test-async-wrap-getasyncid.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sequential/test-async-wrap-getasyncid.js b/test/sequential/test-async-wrap-getasyncid.js index aac356df2a..148e4da300 100644 --- a/test/sequential/test-async-wrap-getasyncid.js +++ b/test/sequential/test-async-wrap-getasyncid.js @@ -94,7 +94,7 @@ function testInitialized(req, ctor_name) { { - const JSStream = process.binding('js_stream').JSStream; + const JSStream = internalBinding('js_stream').JSStream; testInitialized(new JSStream(), 'JSStream'); } |