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
/// A typedef with the new style generic function syntax.
typedef NewGenericTypedef<T> = List<S> Function<S>(T, int, bool);
is currently documented as having parameters (T, T, T).
This is caused by analyzer producing ParameterElementImpls that compare equally to each other, subverting dartdoc's internal object cache. dart-lang/sdk#30146
The text was updated successfully, but these errors were encountered:
A function that looks like this:
is currently documented as having parameters (T, T, T).
This is caused by analyzer producing ParameterElementImpls that compare equally to each other, subverting dartdoc's internal object cache. dart-lang/sdk#30146
The text was updated successfully, but these errors were encountered: