Ignore:
Timestamp:
Nov 24, 2020, 6:19:17 PM (4 years ago)
Author:
chronos
Message:
  • Fixed: Resolved remaining memory leaks.
  • Modified: Generators moved to Generators subdirectory.
  • Modified: PascalParser moved to Parsers subdirectory.
Location:
branches/interpreter2/Forms
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/interpreter2/Forms/UFormMain.lfm

    r213 r221  
    1313  OnDestroy = FormDestroy
    1414  OnShow = FormShow
    15   LCLVersion = '2.0.2.0'
     15  LCLVersion = '2.0.10.0'
    1616  object PanelMessages: TPanel
    1717    Left = 0
     
    4848  end
    4949  object MainMenu1: TMainMenu
    50     left = 790
    51     top = 753
     50    Left = 790
     51    Top = 753
    5252    object MenuItemFile: TMenuItem
    5353      Caption = 'File'
     
    8282  end
    8383  object ActionList1: TActionList
    84     left = 901
    85     top = 759
     84    Left = 901
     85    Top = 759
    8686    object AGeneratePascal: TAction
    8787      Caption = 'Generate Pascal'
  • branches/interpreter2/Forms/UFormMain.pas

    r213 r221  
    7070uses
    7171  UParser, UExecutor, UGeneratorPascal, UGeneratorPhp, UFormMessages, UFormSource,
    72   UGeneratorCSharp, UGeneratorXml, UFormOutput;
     72  UGeneratorCSharp, UGeneratorXml, UFormOutput, UParserPascal;
    7373
    7474{ TFormMain }
     
    111111begin
    112112  FormMessages.Clear;
    113   Parser := TParser.Create;
     113  Parser := TParserPascal.Create;
    114114  Parser.OnError := InterpreterError;
    115115  Parser.Source := FormSource.SynEditSource.Lines.Text;
Note: See TracChangeset for help on using the changeset viewer.