-
-
Notifications
You must be signed in to change notification settings - Fork 45
Closed
Description
In the code below, hovering over "DoTest" does not show a tooltip and Peek/Goto definition on it does not work.
For every other case, all features work as expected.
function Testing() as void
local t as TestClass
t := TestClass{}
t:DoTest() // no Info, Goto/Peek here
t:ToString()
t:Prop := 123
t:exp := 456
class TestClass
export exp as int
property Prop as int auto
method DoTest()
local o as TestClass
o := TestClass{}
o:DoTest() // no Info, Goto/Peek here
self:DoTest() // doesn't work here, either
o:ToString()
o:Prop := 123
o:exp := 456
end class
Here's also a sample MDI project showing the same problems, with all methods in the code: