mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-02 22:36:00 +02:00
Improved debugger side effect handling, auto refresh options
This commit is contained in:
parent
7548bf23cd
commit
1484a5f53c
10 changed files with 150 additions and 30 deletions
|
@ -432,7 +432,8 @@ namespace IDE.Debugger
|
|||
public int32 mActiveCallStackIdx;
|
||||
public Event<Action> mBreakpointsChangedDelegate ~ _.Dispose();
|
||||
public Breakpoint mRunToCursorBreakpoint;
|
||||
public int32 mDebugIdx;
|
||||
public int32 mSessionIdx;
|
||||
public int32 mStateIdx;
|
||||
|
||||
public bool IsRunning
|
||||
{
|
||||
|
@ -466,6 +467,17 @@ namespace IDE.Debugger
|
|||
Debugger_Delete();
|
||||
}
|
||||
|
||||
public void IncrementSessionIdx()
|
||||
{
|
||||
mSessionIdx++;
|
||||
mStateIdx++;
|
||||
}
|
||||
|
||||
public void IncrementStateIdx()
|
||||
{
|
||||
mStateIdx++;
|
||||
}
|
||||
|
||||
public void Reset()
|
||||
{
|
||||
for (var breakpoint in mBreakpointList)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue