Ignore:
Timestamp:
Apr 17, 2020, 11:07:37 PM (4 years ago)
Author:
chronos
Message:
  • Added: Simple PHP code generator.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/interpreter2/USource.pas

    r203 r204  
    1111  TExpressions = class;
    1212  TFunctions = class;
     13  TBeginEnd = class;
    1314
    1415  { TValue }
     
    9899  TFunction = class
    99100    Name: string;
     101    InternalName: string;
    100102    Params: TFunctionParameters;
    101103    ResultType: TType;
     104    BeginEnd: TBeginEnd;
    102105    constructor Create;
    103106    destructor Destroy; override;
     
    340343begin
    341344  Params := TFunctionParameters.Create;
     345  BeginEnd := TBeginEnd.Create;
    342346end;
    343347
    344348destructor TFunction.Destroy;
    345349begin
     350  BeginEnd.Free;
    346351  Params.Free;
    347352  inherited Destroy;
Note: See TracChangeset for help on using the changeset viewer.