mirror of https://gitlab.com/basile.b/dexed.git
fix #26 - calltips, parameter highlighting des not work correctly when there are typectors in the parameters
This commit is contained in:
parent
0155f244a4
commit
e844f6f171
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue