fix #26 - calltips, parameter highlighting des not work correctly when there are typectors in the parameters

This commit is contained in:
Basile Burg 2020-04-16 10:51:07 +02:00
parent 0155f244a4
commit e844f6f171
1 changed files with 2 additions and 2 deletions

View File

@ -598,10 +598,10 @@ begin
goto FIX_AUTO; goto FIX_AUTO;
end; end;
j := 0; j := 0;
// func args // func params
while not r.empty do while not r.empty do
begin begin
a := r.takeUntil([',', ')']).yield; a := r.takeUntil([',', #0]).yield;
if not r.empty then if not r.empty then
begin begin
if r.front = ',' then if r.front = ',' then