Ignore:
Timestamp:
Apr 16, 2020, 7:40:38 PM (5 years ago)
Author:
chronos
Message:
  • Fixed: Memory leaks.
Location:
branches/interpreter2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/interpreter2

    • Property svn:ignore set to
      lib
      interpreter
      interpreter.lps
      interpreter.res
      heaptrclog.trc
  • branches/interpreter2/UInterpreter.pas

    r200 r201  
    1818  public
    1919    Source: string;
     20    procedure Compile;
    2021    procedure Run;
    2122    constructor Create;
     
    2627
    2728{ TInterpreter }
     29
     30procedure TInterpreter.Compile;
     31begin
     32  Parser.Source := Source;
     33  Parser.Parse;
     34end;
    2835
    2936procedure TInterpreter.Run;
Note: See TracChangeset for help on using the changeset viewer.