mirror of
https://github.com/servo/servo.git
synced 2025-08-11 08:25:32 +01:00
Wire up getPossibleBreakpoints()
Signed-off-by: Delan Azabani <dazabani@igalia.com>
This commit is contained in:
parent
0b5a8fa693
commit
99568f4557
10 changed files with 175 additions and 32 deletions
|
@ -8,3 +8,16 @@
|
|||
interface GetPossibleBreakpointsEvent : Event {
|
||||
readonly attribute unsigned long spidermonkeyId;
|
||||
};
|
||||
|
||||
partial interface DebuggerGlobalScope {
|
||||
undefined getPossibleBreakpointsResult(
|
||||
GetPossibleBreakpointsEvent event,
|
||||
sequence<RecommendedBreakpointLocation> result);
|
||||
};
|
||||
|
||||
dictionary RecommendedBreakpointLocation {
|
||||
required unsigned long offset;
|
||||
required unsigned long lineNumber;
|
||||
required unsigned long columnNumber;
|
||||
required boolean isStepStart;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue