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

Unified Diff: tests/language/super_operator_index3_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/language/super_operator_index3_test.dart
diff --git a/tests/language/super_operator_index3_test.dart b/tests/language/super_operator_index3_test.dart
index 405bfc1021c6eddbbc158d4ffca50bfe16c24cba..e49104c78a440c7ac4b97d4f3d74cc86dadf926e 100644
--- a/tests/language/super_operator_index3_test.dart
+++ b/tests/language/super_operator_index3_test.dart
@@ -8,11 +8,13 @@ import "package:expect/expect.dart";
class A {
var indexField = new List(2);
- operator[]=(index, value) { indexField[index] = value; }
+ operator []=(index, value) {
+ indexField[index] = value;
+ }
}
class B extends A {
- operator[](index) => indexField[index];
+ operator [](index) => indexField[index];
}
class C extends B {

Powered by Google App Engine
This is Rietveld 408576698