mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-16 07:09:38 +02:00
LazDebuggerFp (pure): StepIntoStr -> StepIntoInstr
git-svn-id: trunk@44728 -
This commit is contained in:
parent
96991a9a84
commit
22b80b3cf5
components
@ -48,7 +48,7 @@ type
|
||||
destructor Destroy; override;
|
||||
function Run: boolean;
|
||||
procedure Stop;
|
||||
procedure StepIntoStr;
|
||||
procedure StepIntoInstr;
|
||||
procedure StepOverInstr;
|
||||
procedure ProcessLoop;
|
||||
procedure SendEvents(out continue: boolean);
|
||||
@ -131,7 +131,7 @@ begin
|
||||
FMainProcess.TerminateProcess;
|
||||
end;
|
||||
|
||||
procedure TDbgController.StepIntoStr;
|
||||
procedure TDbgController.StepIntoInstr;
|
||||
begin
|
||||
FCurrentThread.SingleStep;
|
||||
end;
|
||||
|
@ -588,7 +588,7 @@ begin
|
||||
end;
|
||||
dcStepIntoInstr:
|
||||
begin
|
||||
FDbgController.StepIntoStr;
|
||||
FDbgController.StepIntoInstr;
|
||||
SetState(dsRun);
|
||||
StartDebugLoop;
|
||||
result := true;
|
||||
|
Loading…
Reference in New Issue
Block a user