mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-07-24 01:26:19 +02:00
codetools: class completion: ignoring nested nested read/write specifiers
git-svn-id: trunk@19988 -
This commit is contained in:
parent
e4089e8358
commit
49b74e836b
@ -4423,10 +4423,12 @@ var
|
||||
if AtomIsChar(';') then exit;
|
||||
AtomIsIdentifier(true);
|
||||
if WordIsPropertySpecifier.DoItCaseInsensitive(Src,CurPos.StartPos,
|
||||
CurPos.EndPos-CurPos.StartPos) then exit;
|
||||
CurPos.EndPos-CurPos.StartPos)
|
||||
then
|
||||
exit;
|
||||
Parts[SpecParam]:=CurPos;
|
||||
ReadNextAtom;
|
||||
if CurPos.Flag=cafPoint then begin
|
||||
while CurPos.Flag=cafPoint do begin
|
||||
ReadNextAtom;
|
||||
AtomIsIdentifier(true);
|
||||
ReadNextAtom;
|
||||
|
Loading…
Reference in New Issue
Block a user