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

Unified Diff: tests/language_strong/factory2_test.dart

Issue 2770063002: Revert "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_strong/factory1_test.dart ('k') | tests/language_strong/factory5_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language_strong/factory2_test.dart
diff --git a/tests/language_strong/factory2_test.dart b/tests/language_strong/factory2_test.dart
index af6c6b630f7d3e937ee21ba519581be8f0cb9e49..85985a4174d4cce13a4f75effd65289c7353dbd5 100644
--- a/tests/language_strong/factory2_test.dart
+++ b/tests/language_strong/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,7 +27,8 @@ 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();
}
@@ -48,3 +49,4 @@ main() {
// instantiation of abstract class
const EmptyLink<String>().prepend('fisk'); //# static type warning
}
+
« no previous file with comments | « tests/language_strong/factory1_test.dart ('k') | tests/language_strong/factory5_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698