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

Unified Diff: tests/language/factory2_test.dart

Issue 2774783002: Re-land "Format all multitests" (Closed)
Patch Set: Created 3 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
« no previous file with comments | « tests/language/factory1_test.dart ('k') | tests/language/factory_implementation_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/factory2_test.dart
diff --git a/tests/language/factory2_test.dart b/tests/language/factory2_test.dart
index 85985a4174d4cce13a4f75effd65289c7353dbd5..af6c6b630f7d3e937ee21ba519581be8f0cb9e49 100644
--- a/tests/language/factory2_test.dart
+++ b/tests/language/factory2_test.dart
@@ -15,7 +15,7 @@ abstract class EmptyLink<T> extends Link<T> {
}
class LinkFactory<T> {
- factory LinkFactory(head, [Link tail]) { }
+ factory LinkFactory(head, [Link tail]) {}
}
// Does not implement all of Iterable
@@ -27,8 +27,7 @@ class AbstractLink<T> implements Link<T> {
}
// Does not implement all of Iterable
-class LinkTail<T> extends AbstractLink<T>
- implements EmptyLink<T> {
+class LinkTail<T> extends AbstractLink<T> implements EmptyLink<T> {
const LinkTail();
}
@@ -49,4 +48,3 @@ main() {
// instantiation of abstract class
const EmptyLink<String>().prepend('fisk'); //# static type warning
}
-
« no previous file with comments | « tests/language/factory1_test.dart ('k') | tests/language/factory_implementation_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698