node/lib/internal
Anatoli Papirovski 5b9ef11e35
timers: fix priority queue removeAt
PR-URL: https://github.com/nodejs/node/pull/24322
Fixes: https://github.com/nodejs/node/issues/24320
Fixes: https://github.com/nodejs/node/issues/24362
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Weijia Wang <starkwang@126.com>
Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
2018-11-15 18:56:04 +01:00
..
bootstrap src: compile native modules and their code cache in C++ 2018-11-15 16:12:26 +01:00
cluster bootstrapper: move internalBinding to NativeModule 2018-10-17 11:15:29 -07:00
crypto crypto: put legacy _handle accessors on prototypes 2018-11-14 00:55:48 +01:00
dns dns: fix inconsistent (hostname vs host) 2018-10-21 12:27:08 -07:00
fs fs,net: standardize pending stream property 2018-11-15 16:12:25 +01:00
http2 fs,net: standardize pending stream property 2018-11-15 16:12:25 +01:00
modules src: cache the result of GetOptions() in JS land 2018-11-13 23:37:33 +01:00
process src: cache the result of GetOptions() in JS land 2018-11-13 23:37:33 +01:00
repl repl: support top-level for-await-of 2018-11-01 21:51:11 +01:00
streams stream: add auto-destroy mode 2018-11-02 13:49:41 +01:00
test src: name EmbededderGraph edges and use class names for nodes 2018-10-17 11:16:07 -07:00
util util: deleted unreachable code from util.inspect 2018-11-14 00:55:55 +01:00
vm vm: add dynamic import support 2018-10-17 11:21:57 -07:00
assert.js assert: remove internal errorCache property 2018-10-17 11:24:44 -07:00
async_hooks.js bootstrapper: move internalBinding to NativeModule 2018-10-17 11:15:29 -07:00
bash_completion.js src: cache the result of GetOptions() in JS land 2018-11-13 23:37:33 +01:00
buffer.js buffer: fix writeUInt16BE range check 2018-11-13 23:37:38 +01:00
child_process.js child_process: allow 'http_parser' monkey patching again 2018-11-13 23:37:34 +01:00
cli_table.js
constants.js
dgram.js bootstrapper: move internalBinding to NativeModule 2018-10-17 11:15:29 -07:00
domexception.js bootstrapper: move internalBinding to NativeModule 2018-10-17 11:15:29 -07:00
encoding.js src: remove function hasTextDecoder in encoding.js 2018-10-17 11:32:04 -07:00
error-serdes.js
errors.js lib: adjust params from uvExceptionWithHostPort 2018-11-14 00:55:51 +01:00
fixed_queue.js
freelist.js async_hooks: add missing async_hooks destroys in AsyncReset 2018-10-17 11:27:01 -07:00
http.js
inspector_async_hook.js
linkedlist.js
net.js net: port isIPv6 to JS 2018-09-11 16:58:16 +08:00
options.js src: cache the result of GetOptions() in JS land 2018-11-13 23:37:33 +01:00
per_context.js src: flip Atomics.notify alias 2018-09-18 17:10:40 -05:00
print_help.js src: cache the result of GetOptions() in JS land 2018-11-13 23:37:33 +01:00
priority_queue.js timers: fix priority queue removeAt 2018-11-15 18:56:04 +01:00
querystring.js
queue_microtask.js lib: trigger uncaught exception handler for microtasks 2018-10-24 16:10:16 +02:00
readline.js icu: make process.binding('icu') internal 2018-10-17 11:24:01 -07:00
readme.md doc: clarify text about internal module changes 2018-07-31 08:28:40 +03:00
repl.js
safe_globals.js
socket_list.js
stream_base_commons.js src: improve StreamBase write throughput 2018-11-01 21:51:11 +01:00
timers.js lib: remove useless getLibuvNow in internal/timers 2018-11-05 17:50:38 +01:00
tls.js tls: change var to const 2018-08-12 10:44:53 -07:00
trace_events_async_hooks.js bootstrapper: move internalBinding to NativeModule 2018-10-17 11:15:29 -07:00
tty.js
url.js url: make the context non-enumerable 2018-11-14 00:55:36 +01:00
util.js src,lib: move natives and constants to internalBinding() 2018-10-21 12:26:42 -07:00
v8_prof_polyfill.js v8_prof_polyfill: remove unused catch bindings 2018-11-06 20:15:31 +01:00
v8_prof_processor.js src,lib: move natives and constants to internalBinding() 2018-10-21 12:26:42 -07:00
validators.js lib: extract validateNumber validator 2018-08-14 11:34:34 -04:00
worker.js worker: remove delete MessagePort.prototype.hasRef 2018-10-17 11:29:51 -07:00
wrap_js_stream.js tls: close StreamWrap and its stream correctly 2018-10-21 12:27:10 -07:00

Internal Modules

The modules in lib/internal are intended for internal use in Node.js core only, and are not accessible with require() from user modules. These modules can be changed at any time. Reliance on these modules outside of core is not supported in any way.