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

Unified Diff: lib/utf/utf_core.dart

Issue 10928139: Changed interfaces to abstract classes where possible in {lib,samples,pkg} (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 3 months 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: lib/utf/utf_core.dart
===================================================================
--- lib/utf/utf_core.dart (revision 12252)
+++ lib/utf/utf_core.dart (working copy)
@@ -240,7 +240,7 @@
* including the ability to get the current position, count remaining items,
* and move forward/backward within the iterator.
*/
-interface _ListRangeIterator extends Iterator<int> {
+abstract class _ListRangeIterator extends Iterator<int> {
ngeoffray 2012/09/12 10:41:47 Should that be implements?
bakster 2012/09/12 10:45:49 Done.
bool hasNext();
int next();
int get position;
« no previous file with comments | « lib/isolate/base.dart ('k') | pkg/dartdoc/ast.dart » ('j') | pkg/unittest/interfaces.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698