Skip to content

Commit ae90756

Browse files
Trottrichardlau
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 Backport-PR-URL: #39446 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent b30ff35 commit ae90756

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
@@ -1050,7 +1050,8 @@ function createRepl(inspector){
10501050
.then(()=>Debugger.setPauseOnExceptions({state: 'none'}))
10511051
.then(()=>Debugger.setAsyncCallStackDepth({maxDepth: 0}))
10521052
.then(()=>Debugger.setBlackboxPatterns({patterns: []}))
1053-
.then(()=>Debugger.setPauseOnExceptions({state: pauseOnExceptionState}))
1053+
.then(()=>
1054+
Debugger.setPauseOnExceptions({state: pauseOnExceptionState}))
10541055
.then(()=>restoreBreakpoints())
10551056
.then(()=>Runtime.runIfWaitingForDebugger());
10561057
}

0 commit comments

Comments
(0)