Changeset 94 for branches/dcomp/CmdLine/Compiler
- Timestamp:
- Nov 4, 2016, 9:26:56 PM (8 years ago)
- Location:
- branches/dcomp/CmdLine/Compiler
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dcomp/CmdLine/Compiler/UAnalyzer.pas
r92 r94 5 5 type 6 6 TAnalyzer = class 7 Name: string; 7 8 procedure Analyze; virtual; 9 constructor Create; virtual; 8 10 end; 9 11 … … 17 19 end; 18 20 21 constructor TAnalyzer.Create; 22 begin 23 24 end; 25 19 26 end. -
branches/dcomp/CmdLine/Compiler/UAnalyzerPascal.pas
r93 r94 12 12 TAnalyzerPascal = class(TAnalyzer) 13 13 procedure Analyze; override; 14 constructor Create; override; 14 15 end; 15 16 … … 23 24 end; 24 25 26 constructor TAnalyzerPascal.Create; 27 begin 28 inherited; 29 Name := 'Pascal'; 30 end; 31 25 32 end. 26 33 -
branches/dcomp/CmdLine/Compiler/UTarget.pas
r91 r94 7 7 Name: string; 8 8 procedure Produce; virtual; 9 constructor Create; virtual; 9 10 end; 10 11 … … 14 15 implementation 15 16 17 constructor TTarget.Create; 18 begin 19 20 end; 21 16 22 procedure TTarget.Produce; 17 23 begin
Note:
See TracChangeset
for help on using the changeset viewer.