Skip to content

Commit d9867b9

Browse files
Trotttargos
authored andcommitted
debugger: wrap lines longer than 80 chars
Wrap lines more than 80 chararcters long in inspect_repl.js so we can disable specific rules. PR-URL: #38529 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent bfec80f commit d9867b9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/internal/inspector/inspect_repl.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,8 @@ function createRepl(inspector) {
10721072
.then(() => Debugger.setPauseOnExceptions({ state: 'none' }))
10731073
.then(() => Debugger.setAsyncCallStackDepth({ maxDepth: 0 }))
10741074
.then(() => Debugger.setBlackboxPatterns({ patterns: [] }))
1075-
.then(() => Debugger.setPauseOnExceptions({ state: pauseOnExceptionState }))
1075+
.then(() =>
1076+
Debugger.setPauseOnExceptions({ state: pauseOnExceptionState }))
10761077
.then(() => restoreBreakpoints())
10771078
.then(() => Runtime.runIfWaitingForDebugger());
10781079
}

0 commit comments

Comments
 (0)