Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v14.x backport] debugger patches #39446

Closed
wants to merge 24 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c53b4ad
lib: add primordials.SafeArrayIterator
aduh95 Dec 6, 2020
1355e52
Revert "debugger: rename internal library for clarity"
aduh95 Jul 20, 2021
7b5e17f
debugger: add usage example for `--port`
RafaelGSS Jul 27, 2020
8146a8c
debugger: refactor `internal/inspector/_inspect` to use more primordials
aduh95 Apr 25, 2021
cc589f3
debugger: wait for V8 debugger to be enabled
targos May 26, 2021
e036082
debugger: revise async iterator usage to comply with lint rules
Trott May 29, 2021
e622105
debugger: reduce scope of eslint disable comment
Trott Jun 6, 2021
9b960d9
debugger: enable linter on `internal/inspector/inspect_client`
aduh95 Apr 26, 2021
5ae4a50
debugger: remove unnecessary boilerplate copyright comment
Trott Jun 6, 2021
ccc69e0
debugger: align message with Node.js standard
Trott Sep 19, 2020
8b16b82
debugger: wrap lines longer than 80 chars
Trott May 4, 2021
62131f6
debugger: avoid non-ASCII char in code file
Trott May 4, 2021
d025841
debugger: disable only the lint rules required by current file state
Trott May 4, 2021
e86361a
debugger: refactor to use internal modules
aduh95 May 5, 2021
22320ed
debugger: refactor `inspect_repl` to use primordials
aduh95 Apr 27, 2021
f41d010
debugger: removed unused function argument
Trott May 30, 2021
7a5e902
errors: add ERR_DEBUGGER_ERROR
Trott Jun 13, 2021
beb3dce
debugger: use ERR_DEBUGGER_ERROR in debugger client
Trott Jun 13, 2021
a4c42b5
debugger: use error codes in debugger REPL
Trott Jun 13, 2021
584f779
errors: add ERR_DEBUGGER_STARTUP_ERROR
Trott Jun 13, 2021
f5dd504
debugger: use ERR_DEBUGGER_STARTUP_ERROR in _inspect.js
Trott Jun 13, 2021
2e8360e
debugger: rename internal library for clarity
Trott Jun 19, 2021
1211825
fixup! lib: add primordials.SafeArrayIterator
aduh95 Jul 20, 2021
9cd07e1
fixup! debugger: add usage example for `--port`
aduh95 Jul 20, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
17 changes: 17 additions & 0 deletions doc/api/errors.md
Expand Up @@ -876,6 +876,22 @@ An unknown cipher was specified.
An unknown Diffie-Hellman group name was given. See
[`crypto.getDiffieHellman()`][] for a list of valid group names.

<a id="ERR_DEBUGGER_ERROR"></a>
### `ERR_DEBUGGER_ERROR`
<!-- YAML
added: REPLACEME
-->

An error occurred with the [debugger][].

<a id="ERR_DEBUGGER_STARTUP_ERROR"></a>
### `ERR_DEBUGGER_STARTUP_ERROR`
<!-- YAML
added: REPLACEME
-->

The [debugger][] timed out waiting for the required host/port to be free.

<a id="ERR_DIR_CLOSED"></a>
### `ERR_DIR_CLOSED`

Expand Down Expand Up @@ -2599,6 +2615,7 @@ closed.
[`util.getSystemErrorName(error.errno)`]: util.md#util_util_getsystemerrorname_err
[`zlib`]: zlib.md
[crypto digest algorithm]: crypto.md#crypto_crypto_gethashes
[debugger]: debugger.md
[define a custom subpath]: packages.md#packages_subpath_exports
[domains]: domain.md
[event emitter-based]: events.md#events_class_eventemitter
Expand Down