Open
Description
VSCode has menu item "Go to references". Applied to method instance it gives all places where method is mentioned, but don't filter by type for which instance is defined.
A few methods (such us parseJSON from Aeson FromJSON) could be used in many places.
So search produce a long list which doesn't help a lot.
The search option should have a constraint option taking into account type to make answer more relevant. All places calling parseJSON specify required type.
Instead of command: find all parseJSON
invocations
Command: find all parseJSON @Foo
invocations