Skip to content

Commit

Permalink
src: sort internal binding list
Browse files Browse the repository at this point in the history
PR-URL: nodejs#24292
Reviewed-By: Gus Caplan <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Weijia Wang <[email protected]>
Reviewed-By: Anna Henningsen <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
Reviewed-By: Franziska Hinkelmann <[email protected]>
  • Loading branch information
cjihrig authored and kiyomizumia committed Nov 15, 2018
1 parent f24e80b commit 6aaef58
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions lib/internal/bootstrap/loaders.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,31 +75,31 @@
// to provide a transition path for modules that are being moved over to
// internalBinding.
const internalBindingWhitelist = [
'async_wrap',
'buffer',
'cares_wrap',
'constants',
'contextify',
'crypto',
'fs_event_wrap',
'http_parser',
'icu',
'udp_wrap',
'uv',
'js_stream',
'natives',
'pipe_wrap',
'http_parser',
'process_wrap',
'v8',
'tty_wrap',
'stream_wrap',
'signal_wrap',
'crypto',
'contextify',
'spawn_sync',
'stream_wrap',
'tcp_wrap',
'tls_wrap',
'util',
'async_wrap',
'tty_wrap',
'udp_wrap',
'url',
'spawn_sync',
'js_stream',
'zlib',
'buffer',
'natives',
'constants'
'util',
'uv',
'v8',
'zlib'
];
// We will use a lazy loaded SafeSet in internalBindingWhitelistHas
// for checking existence in this list.
Expand Down

0 comments on commit 6aaef58

Please sign in to comment.