debugger: Touchups to log breakpoints (#27675)
This is a slight refactor that flattens Breakpoint struct in anticipation of condition/hit breakpoints. It also adds a slight delay before breakpoints are shown on gutter hover to make breakpoints less attention grabbing. Release Notes: - N/A
This commit is contained in:
parent
8ecf553279
commit
f86977e2a7
8 changed files with 136 additions and 276 deletions
|
@ -2660,21 +2660,15 @@ message RefreshLlmToken {}
|
|||
|
||||
// Remote debugging
|
||||
|
||||
enum BreakpointKind {
|
||||
Standard = 0;
|
||||
Log = 1;
|
||||
}
|
||||
|
||||
enum BreakpointState {
|
||||
Enabled = 0;
|
||||
Disabled = 1;
|
||||
}
|
||||
|
||||
|
||||
message Breakpoint {
|
||||
Anchor position = 1;
|
||||
BreakpointState state = 2;
|
||||
BreakpointKind kind = 3;
|
||||
reserved 3;
|
||||
optional string message = 4;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue