Lines Matching refs:Debugger
368 const { Debugger, HeapProfiler, Profiler, Runtime } = inspector;
513 const { scriptSource } = await Debugger.getScriptSource({ scriptId });
599 return PromisePrototypeThen(Debugger.evaluateOnCallFrame({
751 Debugger.setBreakpoint({ location: getCurrentLocation(), condition }),
762 Debugger.setBreakpoint({ location, condition }),
772 Debugger.evaluateOnCallFrame({
816 Debugger.setBreakpoint({ location, condition }),
825 Debugger.setBreakpointByUrl({
859 Debugger.removeBreakpoint({ breakpointId: breakpoint.breakpointId }),
883 Debugger.setPauseOnExceptions({ state }),
889 Debugger.on('paused', ({ callFrames, reason /* , hitBreakpoints */ }) => {
894 inspector.client.callMethod('Debugger.resume');
925 Debugger.on('resumed', handleResumed);
927 Debugger.on('breakpointResolved', handleBreakpointResolved);
929 Debugger.on('scriptParsed', (script) => {
974 return Debugger.resume();
979 return Debugger.stepOver();
984 return Debugger.stepInto();
989 return Debugger.stepOut();
993 return Debugger.pause();
1183 await Debugger.enable();
1184 await Debugger.setAsyncCallStackDepth({ maxDepth: 0 });
1185 await Debugger.setBlackboxPatterns({ patterns: [] });
1186 await Debugger.setPauseOnExceptions({ state: pauseOnExceptionState });