You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, hovering on the label of an argument shows the type of the whole function/pattern. I would expect it to behave the same as hovering over the argument value itself.
For example:
fnadd(wibblea,wobbleb){a+b}fnmain(){add(wibble:1,wobble:2)// ^ Hovering here correctly shows `Int`add(wibble:1,wobble:2)// ^ Hovering here shows `fn(Int, Int) -> Int`, but it should probably also show `Int`}
I already have a mostly working implementation for this but I thought I'd make an issue first
The text was updated successfully, but these errors were encountered:
Currently, hovering on the label of an argument shows the type of the whole function/pattern. I would expect it to behave the same as hovering over the argument value itself.
For example:
I already have a mostly working implementation for this but I thought I'd make an issue first
The text was updated successfully, but these errors were encountered: