Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
debugger: remove unnecessary boilerplate copyright comment
PR-URL: #38952
Reviewed-By: Michaël Zasso <[email protected]>
Reviewed-By: Antoine du Hamel <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Darshan Sen <[email protected]>
Reviewed-By: James M Snell <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
  • Loading branch information
Trott authored and aduh95 committed Jul 20, 2021
commit 5ae4a50018ec10bc3b1e28397bb4f80ca7128cdd
22 changes: 0 additions & 22 deletions lib/internal/inspector/_inspect.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,3 @@
/*
* Copyright Node.js contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/

'use strict';

const {
Expand Down
22 changes: 0 additions & 22 deletions lib/internal/inspector/inspect_client.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,3 @@
/*
* Copyright Node.js contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/

// TODO(aduh95): use errors exported by the internal/errors module
/* eslint-disable no-restricted-syntax */

Expand Down
22 changes: 0 additions & 22 deletions lib/internal/inspector/inspect_repl.js
Original file line number Diff line number Diff line change
@@ -1,25 +1,3 @@
/*
* Copyright Node.js contributors. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
*/

// TODO(trott): enable ESLint
/* eslint-disable */

Expand Down