Skip to main content
Deno 2 is finally here 🎉️
Learn more
Latest
interface Protocol.Debugger.GetPossibleBreakpointsRequest
import { type Protocol } from "https://deno.land/x/pptr@1.2.0/mod.ts";
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.