Ignore:
Timestamp:
Mar 4, 2012, 5:26:20 PM (12 years ago)
Author:
chronos
Message:
  • Added: Compiled target code now can be browsed using Target project navigation.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Compiler/UProducer.pas

    r44 r49  
    1010type
    1111
     12  TWriteTargetEvent = function (Name: string; Code: string): Boolean of object;
     13
    1214  { TProducer }
    1315
    1416  TProducer = class
     17  private
     18    FOnWriteTarget: TWriteTargetEvent;
     19  public
    1520    TextSource: TStringList;
    1621    IndentationLength: Integer;
     
    2328    constructor Create;
    2429    destructor Destroy; override;
     30    property OnWriteTarget: TWriteTargetEvent read FOnWriteTarget write FOnWriteTarget;
    2531  end;
    2632
Note: See TracChangeset for help on using the changeset viewer.