Changeset 35 for trunk/Target/UTarget.pas
- Timestamp:
- Feb 19, 2012, 12:03:21 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Target/UTarget.pas
r34 r35 49 49 procedure AddLine(Text: string); 50 50 function LongFileName(FileName: string): string; 51 function GetExecutionPosition: Integer; virtual; 51 52 public 52 53 Name: string; … … 58 59 ProjectFileName: string; 59 60 Capabilities: TTargetCapabilities; 60 BreakPoint ers: TListInteger;61 BreakPoints: TListInteger; 61 62 DebugSteps: TDebugStepList; 62 63 constructor Create; virtual; … … 71 72 procedure StepInto; virtual; 72 73 procedure StepOut; virtual; 73 procedure RunToCursor ; virtual;74 procedure RunToCursor(Pos: Integer); virtual; 74 75 procedure LoadFromRegistry(Root: HKEY; Key: string); virtual; 75 76 procedure SaveToRegistry(Root: HKEY; Key: string); virtual; … … 79 80 property TargetCode: string read GetTargetCode; 80 81 property Compiled: Boolean read FCompiled write FCompiled; 82 property ExecutionPosition: Integer read GetExecutionPosition; 81 83 end; 82 84 … … 184 186 begin 185 187 Result := FTargetCode; 188 end; 189 190 function TTarget.GetExecutionPosition: Integer; 191 begin 192 186 193 end; 187 194 … … 211 218 inherited; 212 219 Optimization := coNormal; 213 BreakPoint ers := TListInteger.Create;220 BreakPoints := TListInteger.Create; 214 221 DebugSteps := TDebugStepList.Create; 215 222 end; … … 218 225 begin 219 226 DebugSteps.Free;; 220 BreakPoint ers.Free;227 BreakPoints.Free; 221 228 inherited Destroy; 222 229 end; … … 303 310 end; 304 311 305 procedure TTarget.RunToCursor ;312 procedure TTarget.RunToCursor(Pos: Integer); 306 313 begin 307 314
Note:
See TracChangeset
for help on using the changeset viewer.