purescript-language-server icon indicating copy to clipboard operation
purescript-language-server copied to clipboard

Incorrect "Go to definition" behavior for the `Bind` data type.

Open Unisay opened this issue 2 years ago • 0 comments

given the data type definition

data Bind a
  = NonRec (Binding a)
  | Rec (Array (Binding a))

when alt-clicking it at the usage site

then instead of the expected behavior (Bind data type definition opens) the actual behavior is that Bind typeclass definition from Control.Bind opens.

Additionally, type hint is also of the typeclass: image

Unisay avatar Dec 19 '22 18:12 Unisay