support explicit instantiation of generic functions #25824
Labels
area-language
Dart language related items (some items might be better tracked at github.com/dart-lang/language).
type-enhancement
A request for a change that isn't a bug
This covers two related cases:
instantiated tear offs, e.g.
var x = o.m<T>
instantiation of the function type, e.g.
var y = f<int>
We can infer these, so that offers a workaround:
#25619
The main issue is we lack the AST node(s) to represent it.
The text was updated successfully, but these errors were encountered: