Skip to main content
Go to Latest
interface Protocol.Debugger.GetPossibleBreakpointsRequest
import { type Protocol } from "https://deno.land/x/puppeteer@14.1.1/vendor/puppeteer-core/puppeteer/api-docs-entry.js";
const { GetPossibleBreakpointsRequest } = Protocol.Debugger;

Properties

start: Location

Start of range to search possible breakpoint locations in.

optional
end: Location

End of range to search possible breakpoint locations in (excluding). When not specified, end of scripts is used as end of range.

optional
restrictToFunction: boolean

Only consider locations which are in the same (non-nested) function as start.