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

Unified Diff: samples/swarm/swarm_ui_lib/observable/observable.dart

Issue 14065011: Implement getRange (returning an Iterable). (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes and status-file update. Created 7 years, 8 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: samples/swarm/swarm_ui_lib/observable/observable.dart
diff --git a/samples/swarm/swarm_ui_lib/observable/observable.dart b/samples/swarm/swarm_ui_lib/observable/observable.dart
index 89d4a16bd75db5dccbb89bde32aa95ddc00ab35e..b8b4c0fc2503ab538764d59670c17a296e53c869 100644
--- a/samples/swarm/swarm_ui_lib/observable/observable.dart
+++ b/samples/swarm/swarm_ui_lib/observable/observable.dart
@@ -272,7 +272,7 @@ class ObservableList<T>
throw new UnimplementedError();
}
- List getRange(int start, int length) {
+ Iterable getRange(int start, int end) {
throw new UnimplementedError();
}

Powered by Google App Engine
This is Rietveld 408576698