You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the analyzer's DartTypeVisitor class dispatches using a bunch of is checks. We should really update it to follow the traditional visitor pattern, using an abstract accept method in DartType, which each concrete subtype overrides to call the appropriate method in the visitor class.