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

Unified Diff: tests/corelib_strong/list_replace_range_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 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: tests/corelib_strong/list_replace_range_test.dart
diff --git a/tests/corelib_strong/list_replace_range_test.dart b/tests/corelib_strong/list_replace_range_test.dart
index 45b1a849ea979762fb137bbd00fa26821b527d2c..2850f7b90a0fc001a6ca7ff710bfb4783ed0cc2d 100644
--- a/tests/corelib_strong/list_replace_range_test.dart
+++ b/tests/corelib_strong/list_replace_range_test.dart
@@ -26,9 +26,15 @@ class MyList extends ListBase {
List list;
MyList(this.list);
get length => list.length;
- set length(value) { list.length = value; }
+ set length(value) {
+ list.length = value;
+ }
+
operator [](index) => list[index];
- operator []=(index, val) { list[index] = val; }
+ operator []=(index, val) {
+ list[index] = val;
+ }
+
toString() => list.toString();
}

Powered by Google App Engine
This is Rietveld 408576698