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
{{ message }}
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
Note, the code in the first comment is now handled by our initial whitelist implementation, but we're not doing any inference yet. The following variant (with less typing on the closure) is still not handled:
Iterable<int> incr(Iterable<int> iter) => iter.map((x) => x +1);
We need to be able to statically type check methods such as Iterable.map. E.g., this should not trigger a warning:
Initially, we can annotate / whitelist methods that should be treated as generic.
See #28 for general bug on generic methods.
The text was updated successfully, but these errors were encountered: