Skip to content

Commit

Permalink
debugger: wrap lines longer than 80 chars
Browse files Browse the repository at this point in the history
Wrap lines more than 80 chararcters long in inspect_repl.js so we can
disable specific rules.

PR-URL: #38529
Backport-PR-URL: #39446
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
  • Loading branch information
Trott authored and richardlau committed Jul 22, 2021
1 parent b30ff35 commit ae90756
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/internal/inspector/inspect_repl.js
Expand Up @@ -1050,7 +1050,8 @@ function createRepl(inspector) {
.then(() => Debugger.setPauseOnExceptions({ state: 'none' }))
.then(() => Debugger.setAsyncCallStackDepth({ maxDepth: 0 }))
.then(() => Debugger.setBlackboxPatterns({ patterns: [] }))
.then(() => Debugger.setPauseOnExceptions({ state: pauseOnExceptionState }))
.then(() =>
Debugger.setPauseOnExceptions({ state: pauseOnExceptionState }))
.then(() => restoreBreakpoints())
.then(() => Runtime.runIfWaitingForDebugger());
}
Expand Down

0 comments on commit ae90756

Please sign in to comment.