Closed
Description
A function that looks like this:
/// 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