Taskbar displaying wrong parameter hint when multiple lines

Post bugs related to the IDE here
Joubarbe
Enthusiast
Enthusiast
Posts: 555
Joined: Wed Sep 18, 2013 11:54 am
Location: France

Taskbar displaying wrong parameter hint when multiple lines

Post 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.
#NULL
Addict
Addict
Posts: 1440
Joined: Thu Aug 30, 2007 11:54 pm
Location: right here

Re: Taskbar displaying wrong parameter hint when multiple li

Post by #NULL »

I can confirm that, the hint is wrong.
Post Reply