-
Notifications
You must be signed in to change notification settings - Fork 13.1k
Closed
Labels
Domain: Symbol NavigationRelates to go-to-definition, find-all-references, highlighting/occurrences.Relates to go-to-definition, find-all-references, highlighting/occurrences.Experience EnhancementNoncontroversial enhancementsNoncontroversial enhancementsGood First IssueWell scoped, documented and has the green lightWell scoped, documented and has the green lightHelp WantedYou can do thisYou can do this
Milestone
Description
function foo() {
return /*END*/() => {
/*START*/return 10;
}
}
Go to definition on START
should jump you up to the containing function.
It should be resilient to questionable placements of return
and do nothing, as in the following cases.
/*a*/return;
function foo() {
class Foo {
static { /*b*/return; }
}
}
Metadata
Metadata
Assignees
Labels
Domain: Symbol NavigationRelates to go-to-definition, find-all-references, highlighting/occurrences.Relates to go-to-definition, find-all-references, highlighting/occurrences.Experience EnhancementNoncontroversial enhancementsNoncontroversial enhancementsGood First IssueWell scoped, documented and has the green lightWell scoped, documented and has the green lightHelp WantedYou can do thisYou can do this