Changeset 45 for branches/DelphiToC/Analyze/UPascalParser.pas
- Timestamp:
- Aug 9, 2010, 10:34:09 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DelphiToC/Analyze/UPascalParser.pas
r44 r45 10 10 11 11 type 12 EEndOfData = class(Exception);13 14 TBaseParser = class;15 16 12 TOnErrorMessage = procedure (Text: string) of object; 17 13 … … 543 539 begin 544 540 with SourceCode do begin 545 ParseModule(TModule(Modules[0])); 541 for I := 0 to Modules.Count - 1 do 542 ParseModule(TModule(Modules[I])); 546 543 end; 547 544 end;
Note:
See TracChangeset
for help on using the changeset viewer.