Ignore:
Timestamp:
Oct 14, 2010, 1:50:39 PM (14 years ago)
Author:
george
Message:
  • Fixed: Seaching global interunit types and functions.
  • Core files transfered into separate package named TranspascalCompiler.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Transpascal/UProject.pas

    r55 r60  
    2424  TProjectFile = class(TProjectNode)
    2525    Source: TStringList;
    26     ProducedCode: TStringList;
    2726    constructor Create;
    2827    destructor Destroy; override;
     
    104103begin
    105104  Source := TStringList.Create;
    106   ProducedCode := TStringList.Create;
    107105end;
    108106
     
    110108begin
    111109  Source.Free;
    112   ProducedCode.Free;
    113110  inherited Destroy;
    114111end;
Note: See TracChangeset for help on using the changeset viewer.