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
This leads to two warnings when compiling frog with itself.
leg/util/link_implementation.dart:10:27: warning: cannot find type T
tail = new LinkTail<T>(); // Frog bug: T is in scope.
^
leg/util/link_implementation.dart:13:26: warning: cannot find type T
return new LinkEntry<T>(head, tail); // Frog bug: T is in scope.
^
Swallowing my annoyance and just implementing the damn feature...