diff options
author | James M Snell <jasnell@gmail.com> | 2019-03-09 09:28:04 +0100 |
---|---|---|
committer | James M Snell <jasnell@gmail.com> | 2019-03-12 14:19:36 +0000 |
commit | f9ddbb6b2f2ff61bb62a4ee8a8819d561322c9e8 (patch) | |
tree | 3e761d0fd70523fbf801520fa1e3863548f32169 /.eslintrc.js | |
parent | f2064dfc1fee2daa0537bc27d79d5aa0f734faaf (diff) | |
download | node-new-f9ddbb6b2f2ff61bb62a4ee8a8819d561322c9e8.tar.gz |
lib: move DTRACE_* probes out of global scope
The DTRACE_* probes have been global for no really good reason.
Move those into an internalBinding.
PR-URL: https://github.com/nodejs/node/pull/26541
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Matheus Marchini <mat@mmarchini.me>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index 475c75ff96..23b707b55d 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -281,12 +281,6 @@ module.exports = { BigInt: 'readable', BigInt64Array: 'readable', BigUint64Array: 'readable', - DTRACE_HTTP_CLIENT_REQUEST: 'readable', - DTRACE_HTTP_CLIENT_RESPONSE: 'readable', - DTRACE_HTTP_SERVER_REQUEST: 'readable', - DTRACE_HTTP_SERVER_RESPONSE: 'readable', - DTRACE_NET_SERVER_CONNECTION: 'readable', - DTRACE_NET_STREAM_END: 'readable', TextEncoder: 'readable', TextDecoder: 'readable', queueMicrotask: 'readable', |