Changeset 50 for branches/DelphiToC/UPascalSource.pas
- Timestamp:
- Aug 9, 2010, 3:05:26 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DelphiToC/UPascalSource.pas
r48 r50 91 91 end; 92 92 93 { TForToDo } 94 93 95 TForToDo = class(TCommand) 94 96 ControlVariable: TVariable; … … 96 98 Stop: TExpression; 97 99 Command: TCommand; 100 constructor Create; 101 destructor Destroy; override; 98 102 end; 99 103 … … 149 153 150 154 TType = class 155 System: Boolean; 151 156 Parent: TTypeList; 152 157 Name: string; … … 243 248 TFunction = class(TCommonBlock) 244 249 public 250 System: Boolean; 245 251 HaveResult: Boolean; 246 252 Parameters: TParameterList; … … 641 647 end; 642 648 649 { TForToDo } 650 651 constructor TForToDo.Create; 652 begin 653 inherited; 654 Start := TExpression.Create; 655 Stop := TExpression.Create; 656 end; 657 658 destructor TForToDo.Destroy; 659 begin 660 Start.Free; 661 Stop.Free;; 662 inherited Destroy; 663 end; 664 643 665 end. 644 666
Note:
See TracChangeset
for help on using the changeset viewer.