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

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

Issue 12817003: Change getRange to sublist. Make getRange deprecated. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 85c2ae6afd79bf2b02b81706c3aaf53416838957..2a8ceb794d783367a4606bb9672483a950a9605a 100644
--- a/samples/swarm/swarm_ui_lib/observable/observable.dart
+++ b/samples/swarm/swarm_ui_lib/observable/observable.dart
@@ -267,6 +267,10 @@ class ObservableList<T>
throw new UnimplementedError();
}
+ List sublist(int start, [int end]) {
+ throw new UnimplementedError();
+ }
+
List getRange(int start, int length) {
throw new UnimplementedError();
}

Powered by Google App Engine
This is Rietveld 408576698