Changeset 38 for branches/DelphiToC/UPascalSource.pas
- Timestamp:
- Aug 5, 2010, 8:47:21 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DelphiToC/UPascalSource.pas
r36 r38 6 6 7 7 uses 8 Windows, Messages,SysUtils, Variants, Classes, Graphics, Controls, Forms,8 SysUtils, Variants, Classes, Graphics, Controls, Forms, 9 9 Dialogs, StdCtrls, Contnrs; 10 10 … … 45 45 46 46 TCommand = class 47 Parent: TObject; 48 47 CommonBlock: TCommonBlock; 49 48 end; 50 49 … … 62 61 TBeginEnd = class(TCommand) 63 62 Commands: TCommandList; 63 CommonBlock: TCommonBlock; 64 64 procedure Clear; 65 65 constructor Create; … … 201 201 202 202 TExpression = class 203 CommonBlock: TCommonBlock; 203 204 NodeType: TNodeType; 204 205 Variable: TVariable; … … 377 378 Methods.Parent := Self; 378 379 Code := TBeginEnd.Create; 380 Code.CommonBlock := Self; 379 381 end; 380 382 … … 580 582 constructor TCaseOfEnd.Create; 581 583 begin 584 inherited; 582 585 Branches := TObjectList.Create 583 586 end;
Note:
See TracChangeset
for help on using the changeset viewer.