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

Unified Diff: tests/language_strong/function_type_alias8_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_strong/function_type_alias8_test.dart
diff --git a/tests/language_strong/function_type_alias8_test.dart b/tests/language_strong/function_type_alias8_test.dart
index 3d027c3b742ea164bd5974c4222b0d0ca641881a..10f3f8e9ecdf9bf3819a1b798a9b35fd0267b6ea 100644
--- a/tests/language_strong/function_type_alias8_test.dart
+++ b/tests/language_strong/function_type_alias8_test.dart
@@ -8,13 +8,12 @@ typedef dynamic GetFromThing<T extends Thing>(T target);
typedef GetFromThing<T> DefGetFromThing<T extends Thing>(dynamic def);
-class Thing { }
+class Thing {}
class Test {
- static final DefGetFromThing<Thing> fromThing = (dynamic def) { };
+ static final DefGetFromThing<Thing> fromThing = (dynamic def) {};
}
main() {
Test.fromThing(10);
}
-

Powered by Google App Engine
This is Rietveld 408576698