Ignore:
Timestamp:
Aug 9, 2010, 10:34:09 AM (14 years ago)
Author:
george
Message:

Fixed comparasion of name of identificators as types, variables, consts, methods using lowercase.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DelphiToC/Analyze/UPascalParser.pas

    r44 r45  
    1010
    1111type
    12   EEndOfData = class(Exception);
    13 
    14   TBaseParser = class;
    15 
    1612  TOnErrorMessage = procedure (Text: string) of object;
    1713
     
    543539begin
    544540  with SourceCode do begin
    545     ParseModule(TModule(Modules[0]));
     541    for I := 0 to Modules.Count - 1 do
     542      ParseModule(TModule(Modules[I]));
    546543  end;
    547544end;
Note: See TracChangeset for help on using the changeset viewer.