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 0f518f3 commit 54c2b07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/internal/inspector/inspect_repl.js
Original file line number Diff line number Diff line change
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 54c2b07

Please sign in to comment.