Skip to content

Peek/Goto definition and info tooltip do not work for methods #1111

@cpyrgas

Description

@cpyrgas

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:

VOMDIApp27.zip

Metadata

Metadata

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions