type TMyClass = class(TObject)
In this case, "Operator" is used as a normal Delphi identifier
| Public | property Operator: string read FOperator write FOperator; |
| Public | property Operator: string read FOperator write FOperator; |
|
In this case, "Operator" is used as a normal Delphi identifier, not as an ObjFpc keyword. PasDoc should tolerate this, for compatibility with Delphi and with FPC in $mode delphi. | |