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
Judging by DDC's output, it looks like Analyzer creates a synthetic typedef of some sort for List<A> Function<A>(List<Function> x) ... however, when DDC generates code for that, the typedef is backed by a non-generic function type.
DDC does support generic function types if they're declared with named typedefs, so my guess is it's something a bit quirky in the element model, that we aren't handling correctly in _emitType
The text was updated successfully, but these errors were encountered:
see function_type50_test, testF4:
Judging by DDC's output, it looks like Analyzer creates a synthetic typedef of some sort for
List<A> Function<A>(List<Function> x)
... however, when DDC generates code for that, the typedef is backed by a non-generic function type.DDC does support generic function types if they're declared with named typedefs, so my guess is it's something a bit quirky in the element model, that we aren't handling correctly in _emitType
The text was updated successfully, but these errors were encountered: