Changeset 7 for trunk/Compiler/USourceCode.pas
- Timestamp:
- Nov 5, 2010, 1:50:02 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Compiler/USourceCode.pas
r6 r7 418 418 419 419 TModuleUnit = class(TModule) 420 InititializeSection: TCommonBlock; 421 FinalalizeSection: TCommonBlock; 420 422 constructor Create; 421 423 destructor Destroy; override; … … 1030 1032 begin 1031 1033 inherited; 1034 InititializeSection := TCommonBlock.Create; 1035 InititializeSection.ParentModule := Self; 1036 FinalalizeSection := TCommonBlock.Create; 1037 FinalalizeSection.ParentModule := Self; 1032 1038 end; 1033 1039 1034 1040 destructor TModuleUnit.Destroy; 1035 1041 begin 1042 InititializeSection.Free; 1043 FinalalizeSection.Free; 1036 1044 inherited Destroy; 1037 1045 end;
Note:
See TracChangeset
for help on using the changeset viewer.