Closed
Description
Searching for [State] returns results that appear to all be from the "widgets library": it says "widgets library", then "State class", then "State class", then "State constructor", then "BackgroundFetchClickEvent". The latter is actually from dart:html and has nothing to do with the others, but there is no clear separation between them to indicate that they are unrelated. The next result is back to being from the Flutter package which further confused the issue.
One could imagine fixing this in conjunction with #3171 by having every result be of the form "Class.member (library) description..." or some such, as in:
State
class (widgets
) The logic and internal state for a Statef...State
constructor (widgets
)BackgroundFetchClickEvent.state
(dart:html
)PrimaryPointerGestureRecognizer.state
(gestures
) The cur...