Skip to content

Commit

Permalink
Revert "debugger: rename internal library for clarity"
Browse files Browse the repository at this point in the history
This reverts commit d0c7ab0.

PR-URL: nodejs#39446
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
  • Loading branch information
aduh95 authored and foxxyz committed Oct 18, 2021
1 parent 9d57349 commit b25548d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Expand Up @@ -31,8 +31,8 @@ const util = require('util');

const { 0: InspectClient, 1: createRepl } =
[
require('internal/debugger/inspect_client'),
require('internal/debugger/inspect_repl'),
require('internal/inspector/inspect_client'),
require('internal/inspector/inspect_repl'),
];

const debuglog = util.debuglog('inspect');
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/internal/main/inspect.js
Expand Up @@ -18,5 +18,5 @@ markBootstrapComplete();

// Start the debugger agent.
process.nextTick(() => {
require('internal/debugger/_inspect').start();
require('internal/inspector/_inspect').start();
});
6 changes: 3 additions & 3 deletions node.gyp
Expand Up @@ -125,9 +125,6 @@
'lib/internal/crypto/sig.js',
'lib/internal/crypto/util.js',
'lib/internal/constants.js',
'lib/internal/debugger/_inspect.js',
'lib/internal/debugger/inspect_client.js',
'lib/internal/debugger/inspect_repl.js',
'lib/internal/dgram.js',
'lib/internal/dns/promises.js',
'lib/internal/dns/utils.js',
Expand All @@ -151,6 +148,9 @@
'lib/internal/heap_utils.js',
'lib/internal/histogram.js',
'lib/internal/idna.js',
'lib/internal/inspector/_inspect.js',
'lib/internal/inspector/inspect_client.js',
'lib/internal/inspector/inspect_repl.js',
'lib/internal/inspector_async_hook.js',
'lib/internal/js_stream_socket.js',
'lib/internal/linkedlist.js',
Expand Down

0 comments on commit b25548d

Please sign in to comment.