Lines Matching refs:Debugger
320 const { Debugger, HeapProfiler, Profiler, Runtime } = inspector;
464 const { scriptSource } = await Debugger.getScriptSource({ scriptId });
553 return PromisePrototypeThen(Debugger.evaluateOnCallFrame({
694 Debugger.setBreakpoint({ location: getCurrentLocation(), condition }),
705 Debugger.setBreakpoint({ location, condition }),
715 Debugger.evaluateOnCallFrame({
759 Debugger.setBreakpoint({ location, condition }),
768 Debugger.setBreakpointByUrl({
802 Debugger.removeBreakpoint({ breakpointId: breakpoint.breakpointId }),
826 Debugger.setPauseOnExceptions({ state }),
832 Debugger.on('paused', ({ callFrames, reason /* , hitBreakpoints */ }) => {
869 Debugger.on('resumed', handleResumed);
871 Debugger.on('breakpointResolved', handleBreakpointResolved);
873 Debugger.on('scriptParsed', (script) => {
917 return Debugger.resume();
922 return Debugger.stepOver();
927 return Debugger.stepInto();
932 return Debugger.stepOut();
936 return Debugger.pause();
1124 await Debugger.enable();
1125 await Debugger.setPauseOnExceptions({ state: 'none' });
1126 await Debugger.setAsyncCallStackDepth({ maxDepth: 0 });
1127 await Debugger.setBlackboxPatterns({ patterns: [] });
1128 await Debugger.setPauseOnExceptions({ state: pauseOnExceptionState });