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

Unified Diff: corelib/src/queue.dart

Issue 8952006: Fix factories in Frog to correspond to the new syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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
Index: corelib/src/queue.dart
diff --git a/corelib/src/queue.dart b/corelib/src/queue.dart
index 80125b39a234193174c67e71503637928afac3a9..5cdb5ee0ded97563bf21ce8b4208e273a47a5866 100644
--- a/corelib/src/queue.dart
+++ b/corelib/src/queue.dart
@@ -7,7 +7,7 @@
* can iterate over the elements of a queue through [forEach] or with
* an [Iterator].
*/
-interface Queue<E> extends Collection<E> factory DoubleLinkedQueue<E> {
+interface Queue<E> extends Collection<E> default DoubleLinkedQueue<E> {
/**
* Creates a queue.
« no previous file with comments | « corelib/src/promise.dart ('k') | corelib/src/regexp.dart » ('j') | frog/parser.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698