Ignore:
Timestamp:
Oct 22, 2010, 9:22:55 AM (14 years ago)
Author:
george
Message:
  • Compiler producer for C language separated to GCC and Dynamic C dialect.
  • Enhanced: Parse record functions body.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Transpascal/Compiler/Analyze/UParser.pas

    r76 r77  
    6464    procedure Expect(Code: string);
    6565    procedure ErrorMessage(const Text: string; const Arguments: array of const;
    66       TokenOffset: Integer);
     66      TokenOffset: Integer = -1);
    6767    property OnErrorMessage: TErrorMessageEvent read FOnErrorMessage write FOnErrorMessage;
    6868    property OnDebugLog: TDebugLogEvent read FOnDebugLog write FOnDebugLog;
     
    8080
    8181procedure TBaseParser.ErrorMessage(const Text: string; const Arguments: array of const;
    82   TokenOffset: Integer);
     82  TokenOffset: Integer = -1);
    8383begin
    8484  if Assigned(FOnErrorMessage) then
Note: See TracChangeset for help on using the changeset viewer.