mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 10:16:17 +02:00
Debugger: Fix parsing class with nested record / array of record / newer gdb
git-svn-id: trunk@43318 -
This commit is contained in:
parent
60810fa307
commit
37802bc55d
@ -2391,8 +2391,8 @@ var
|
||||
j := 1;
|
||||
while true do begin
|
||||
while (j <= l) and (S2[j] in ['^','(', ' ']) do inc(j);
|
||||
if (lowercase(copy(S2, j, 7)) = 'array [') then begin
|
||||
inc(j, 8+3);
|
||||
if (lowercase(copy(S2, j, 6)) = 'array ') then begin
|
||||
inc(j, 5+3);
|
||||
while (j <= l) and
|
||||
not ( (S2[j-3] = ' ') and (S2[j-2] in ['o','O']) and (S2[j-1] in ['f','F']) and (S2[j] = ' ') )
|
||||
do
|
||||
|
Loading…
Reference in New Issue
Block a user