Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(629)

Unified Diff: frog/leg/util/link_implementation.dart

Issue 8515024: Require legacy form of type parameters in factories and report errors if a factory class does not... (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/vm/parser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frog/leg/util/link_implementation.dart
===================================================================
--- frog/leg/util/link_implementation.dart (revision 1463)
+++ frog/leg/util/link_implementation.dart (working copy)
@@ -34,8 +34,8 @@
const AbstractLink();
- Link<T> prepend(T element) {
- return new Link<T>(element, this);
+ Link prepend(T element) {
+ return new Link(element, this);
}
Iterator<T> iterator() => toList().iterator();
« no previous file with comments | « no previous file | runtime/vm/parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698