dotnet / fsharp

The F# compiler, F# core library, F# language service, and F# tooling integration for Visual Studio
https://dotnet.microsoft.com/languages/fsharp
MIT License
3.89k stars 783 forks source link

Methods are not tagged as methods in tooltips #10540

Open auduchinok opened 3 years ago

auduchinok commented 3 years ago

With recent changes the Method name below is tagged as Member and not as Method in a tooltip:

type T() =
    member x.Method() = ()

Presumably it's a regression in #9563.

cartermp commented 3 years ago

My guess is it has to do with this addition. Frankly, there's probably no need for it: https://github.com/dotnet/fsharp/pull/9563/files#diff-2a492c131c46adf510ae8bfb8a1c1fa1d1392a8c0ea0ed9bf9177f86dff16599R1168

cartermp commented 3 years ago

Hmm, no, that's not it.