Page 1 of 1

Taskbar displaying wrong parameter hint when multiple lines

Posted: Mon Aug 26, 2019 1:59 pm
by Joubarbe

Code: Select all

DeclareModule bar
  Declare Do(param1.i, param2.i)
EndDeclareModule

Module bar
  Procedure Do(param1.i, param2.i) : EndProcedure
EndModule

DeclareModule foo
  Declare Do(param.s)
EndDeclareModule

Module foo
  Procedure DoMore(param.f) : EndProcedure
  
  Procedure Do(param.s) : EndProcedure
  
  bar::Do(DoMore(15), 
          DoMore(2))
EndModule
Place the mouse cursor at line 18, you'll see the proper hint for bar::Do(). Place it at line 19, and you'll see the wrong hint, pointing at foo::Do(), which has only one argument.

Re: Taskbar displaying wrong parameter hint when multiple li

Posted: Mon Aug 26, 2019 2:11 pm
by #NULL
I can confirm that, the hint is wrong.