Changeset 94
- Timestamp:
- Nov 4, 2016, 9:26:56 PM (8 years ago)
- Location:
- branches/dcomp/CmdLine
- Files:
-
- 2 added
- 5 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 -
branches/dcomp/CmdLine/TargetPHP/UTargetPHP.pas
r91 r94 9 9 TTargetPHP = class(TTarget) 10 10 procedure Produce; override; 11 constructor Create; override; 11 12 end; 12 13 13 14 implementation 15 16 constructor TTargetPHP.Create; 17 begin 18 inherited; 19 Name := 'PHP'; 20 end; 14 21 15 22 procedure TTargetPHP.Produce; -
branches/dcomp/CmdLine/dcomp.dpr
r93 r94 9 9 UAnalyzerPascal in 'Compiler\UAnalyzerPascal.pas', 10 10 UAnalyzer in 'Compiler\UAnalyzer.pas', 11 UTarget in 'Compiler\UTarget.pas'; 11 UTarget in 'Compiler\UTarget.pas', 12 USourceCode in 'Compiler\USourceCode.pas', 13 USourceCodePascal in 'Compiler\USourceCodePascal.pas'; 12 14 13 15 type
Note:
See TracChangeset
for help on using the changeset viewer.