mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-04 11:36:02 +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;
|
if AtomIsChar(';') then exit;
|
||||||
AtomIsIdentifier(true);
|
AtomIsIdentifier(true);
|
||||||
if WordIsPropertySpecifier.DoItCaseInsensitive(Src,CurPos.StartPos,
|
if WordIsPropertySpecifier.DoItCaseInsensitive(Src,CurPos.StartPos,
|
||||||
CurPos.EndPos-CurPos.StartPos) then exit;
|
CurPos.EndPos-CurPos.StartPos)
|
||||||
|
then
|
||||||
|
exit;
|
||||||
Parts[SpecParam]:=CurPos;
|
Parts[SpecParam]:=CurPos;
|
||||||
ReadNextAtom;
|
ReadNextAtom;
|
||||||
if CurPos.Flag=cafPoint then begin
|
while CurPos.Flag=cafPoint do begin
|
||||||
ReadNextAtom;
|
ReadNextAtom;
|
||||||
AtomIsIdentifier(true);
|
AtomIsIdentifier(true);
|
||||||
ReadNextAtom;
|
ReadNextAtom;
|
||||||
|
Loading…
Reference in New Issue
Block a user