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

Unified Diff: tests/language/type_variable_identifier_expression_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/type_variable_identifier_expression_test.dart
diff --git a/tests/language/type_variable_identifier_expression_test.dart b/tests/language/type_variable_identifier_expression_test.dart
index bef7e09d465d9dc5379456812c7ec4247a97f416..7ddaa4ba2fc551a8a7ea24b465c6e19b11da1606 100644
--- a/tests/language/type_variable_identifier_expression_test.dart
+++ b/tests/language/type_variable_identifier_expression_test.dart
@@ -4,7 +4,9 @@
// VMOptions=--enable_type_checks
class A {
- static func() { return "class A"; }
+ static func() {
+ return "class A";
+ }
}
class B<T> {
@@ -17,6 +19,5 @@ main() {
try {
var buf = new B<A>().doFunc();
print(buf);
- } on NoSuchMethodError catch (e) {
- }
+ } on NoSuchMethodError catch (e) {}
}

Powered by Google App Engine
This is Rietveld 408576698