Hello. I'm parsing Vcl.Controls.pas. At approximately line 450, there's this snippet:
type
{ .NET / Win32 source compatibility declarations }
{$IF DEFINED(CLR)}
TCustomData = TObject;
TCustomLongData = TObject deprecated 'Use THelpEventData, TListBoxItemData or NativeInt';
TWindowProcPtr = IntPtr;
{$ELSE}
TCustomData = Pointer;
TCustomLongData = NativeInt deprecated 'Use THelpEventData, TListBoxItemData or NativeInt';
TWindowProcPtr = Pointer;
{$ENDIF}
The line TCustomLongData = TObject deprecated 'Use THelpEventData, TListBoxItemData or NativeInt'; parses with the node for TCustomLongData and TObject both as ERROR.
My guess is that this is because of the deprecated keyword and string afterwards.
Hello. I'm parsing Vcl.Controls.pas. At approximately line 450, there's this snippet:
The line
TCustomLongData = TObject deprecated 'Use THelpEventData, TListBoxItemData or NativeInt';parses with the node for TCustomLongData and TObject both as ERROR.My guess is that this is because of the deprecated keyword and string afterwards.