Ignore:
Timestamp:
Feb 18, 2012, 7:49:17 PM (12 years ago)
Author:
chronos
Message:
  • Renamed: Compilers renamed to Targets. Interpretter will be one of possible targets.
Location:
trunk/Target
Files:
1 copied
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Target/UTargetPHP.pas

    r29 r30  
    1 unit UCompilerPHP;
     1unit UTargetPHP;
    22
    33{$mode Delphi}{$H+}
     
    66
    77uses
    8   Classes, SysUtils, UCompiler;
     8  Classes, SysUtils, UTarget;
    99
    1010type
    1111
    12   { TBrainFuckCompilerPHP }
     12  { TTargetPHP }
    1313
    14   TBrainFuckCompilerPHP = class(TBrainFuckCompiler)
     14  TTargetPHP = class(TTarget)
    1515    constructor Create; override;
    1616    procedure Compile; override;
     
    2121implementation
    2222
    23 { TBrainFuckCompilerPHP }
     23{ TTargetPHP }
    2424
    25 constructor TBrainFuckCompilerPHP.Create;
     25constructor TTargetPHP.Create;
    2626begin
    2727  inherited Create;
     
    3636end;
    3737
    38 procedure TBrainFuckCompilerPHP.Compile;
     38procedure TTargetPHP.Compile;
    3939var
    4040  I: Integer;
     
    9393end;
    9494
    95 procedure TBrainFuckCompilerPHP.Run;
     95procedure TTargetPHP.Run;
    9696begin
    9797  inherited Run;
Note: See TracChangeset for help on using the changeset viewer.