nwolverson / purescript-language-server

MIT License
183 stars 41 forks source link

Presence of VTA prevents LSP functionality #204

Open nwolverson opened 5 months ago

nwolverson commented 5 months ago
module M where
import Prelude

id :: forall @a. a -> a
id x = let _ = map in x

foo :: String -> String
foo = id @String -- if VTA is present, hovering on `map` above doesn't work. when it's removed, it does