Skip to content

Go to Definition not working for class symbols inside inline function parameter types #3399

@TAN00XU

Description

@TAN00XU

How are you using the lua-language-server?

Visual Studio Code Extension (sumneko.lua)

Which OS are you using?

Windows

What is the issue affecting?

Hover

Expected Behaviour

Clicking on MyData inside the function(data: MyData) parameter list should navigate to the ---@Class MyData definition, similar to how it works in a standard ---@type MyData

Actual Behaviour

Hovering over MyData correctly displays the class documentation.

"Go to Definition" (F12) does not trigger any action.

No error is reported in the logs, it simply feels like the text is not "linkified".

Reproduction steps

---@class MyData
---@field id number

---@param callback fun(data: MyData)
function Execute(callback)
end

-- Try to "Go to Definition" on `MyData` in the line below:
Execute(function(data)
    -- The hover shows "(class) MyData", but F12 does nothing.
end)
Image

Additional Notes

When a function parameter is annotated as a fun(arg: ClassName), the ClassName symbol in the hover tooltip shows the correct class information, but "Go to Definition" (F12 or Ctrl+Click) fails to navigate to the class definition.

Behaviors are normal in EmmyLua.

Log File

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions