Open
Description
Inspired by #32735.
When you have hovers today they show the origin of a given type at the end like the following:
import 'b.dart' as lib;
void main() {
lib.MyClass();
}
But the URI placed there is not consistent with the current imported URI from the import
directive.
Edit
I'm asking for the hover to also show exactly which import directives (may be more than one) are exporting that declaration. This would help identifying where are you getting it from wich may be helpful when you're unfamiliar with the current project/package.
CC: @DanTup