-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
P2A bug or feature request we're likely to work onA bug or feature request we're likely to work ondevexp-serverIssues related to some aspect of the analysis serverIssues related to some aspect of the analysis serverlegacy-area-analyzerUse area-devexp instead.Use area-devexp instead.type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug
Description
Given this code:
import "dart:async" as x;
main() {
var a = new x.Future();
}If you send a hover request for the x at the bottom you get this:
{
"id": "212",
"result": {
"hovers": [
{
"offset": 148,
"length": 1,
"containingLibraryPath": "/Users/dantup/Desktop/Dart Sample/bin/main.dart",
"containingLibraryName": "",
"elementDescription": "as x",
"elementKind": "import prefix",
"isDeprecated": false
}
]
}
}There's no information in there to say that this import was for dart:async so it's hard to render a useful tooltip. If I hover over dart:async I get a bunch of information including the dartdoc for the library. It's be nice if we could have this here to show the user information about what x is.
srawlins and FMorschel
Metadata
Metadata
Assignees
Labels
P2A bug or feature request we're likely to work onA bug or feature request we're likely to work ondevexp-serverIssues related to some aspect of the analysis serverIssues related to some aspect of the analysis serverlegacy-area-analyzerUse area-devexp instead.Use area-devexp instead.type-enhancementA request for a change that isn't a bugA request for a change that isn't a bug