Changeset 149 for branches/easy compiler/USourceCode.pas
- Timestamp:
- Jan 18, 2018, 1:30:58 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/easy compiler/USourceCode.pas
r148 r149 26 26 TSourceValue = class 27 27 procedure Assign(Source: TSourceValue); virtual; 28 constructor Create; virtual; 28 29 end; 29 30 … … 113 114 Items: TSourceValues; 114 115 procedure Assign(Source: TSourceValue); override; 115 constructor Create; 116 constructor Create; override; 116 117 destructor Destroy; override; 117 118 end; … … 188 189 189 190 TCommandIfEqual = class(TSourceCommand) 191 Reference1: TSourceReference; 192 Reference2: TSourceReference; 193 destructor Destroy; override; 194 end; 195 196 { TCommandIfNotEqual } 197 198 TCommandIfNotEqual = class(TSourceCommand) 190 199 Reference1: TSourceReference; 191 200 Reference2: TSourceReference; … … 223 232 224 233 implementation 234 235 { TCommandIfNotEqual } 236 237 destructor TCommandIfNotEqual.Destroy; 238 begin 239 Reference1.Free; 240 Reference2.Free; 241 inherited Destroy; 242 end; 225 243 226 244 { TSourceType } … … 364 382 end; 365 383 384 constructor TSourceValue.Create; 385 begin 386 end; 387 366 388 { TSourceValueInteger } 367 389
Note:
See TracChangeset
for help on using the changeset viewer.