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

Unified Diff: tests/lib/mirrors/model.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/lib/mirrors/model.dart
diff --git a/tests/lib/mirrors/model.dart b/tests/lib/mirrors/model.dart
index a06c757919db8e731e3b9f9558fc821a16bbe4ad..508cbf2e2f23d665e9ff45463480352829f7f577 100644
--- a/tests/lib/mirrors/model.dart
+++ b/tests/lib/mirrors/model.dart
@@ -19,6 +19,7 @@ class A {
set accessor(x) {
accessorA = x;
}
+
aMethod() => 'aMethod';
}
@@ -29,6 +30,7 @@ class B extends A {
set accessor(x) {
accessorB = x;
}
+
bMethod() => 'bMethod';
}
@@ -36,10 +38,12 @@ class C extends B {
set field(x) {
fieldC = x;
}
+
instanceMethod(x) => 'C:instanceMethod($x)';
get accessor => 'C:get accessor';
set accessor(x) {
accessorC = x;
}
+
cMethod() => 'cMethod';
}

Powered by Google App Engine
This is Rietveld 408576698