mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-11-03 20:43:40 +01:00
modified by the ide
+ Added some parsing to evaluate complex expressions
not understood by the debugger
git-svn-id: trunk@3068 -
16 lines
245 B
ObjectPascal
16 lines
245 B
ObjectPascal
program debugtest;
|
|
|
|
{$mode objfpc}
|
|
{$H+}
|
|
|
|
|
|
uses
|
|
Classes, Forms, DebugTestForm, BreakpointsDlg, LocalsDlg,
|
|
Interfaces, Unit1;
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TDebugTestForm, DebugTestFrm);
|
|
Application.Run;
|
|
end.
|