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

Unified Diff: tests/language_strong/cyclic_typedef_test.dart

Issue 2768073002: 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
Index: tests/language_strong/cyclic_typedef_test.dart
diff --git a/tests/language_strong/cyclic_typedef_test.dart b/tests/language_strong/cyclic_typedef_test.dart
index 1f42e613fa3885263cd7d5d75c432c148a687130..6b967074ca8a7b3b5cd0b27c71c7d2f9a36f4172 100644
--- a/tests/language_strong/cyclic_typedef_test.dart
+++ b/tests/language_strong/cyclic_typedef_test.dart
@@ -11,7 +11,7 @@ typedef
// Cyclic through return type.
A //# 01: compile-time error
-A // The name of the typedef
+ A // The name of the typedef
// Cyclic through type variable bound.
<T extends A> //# 10: compile-time error
@@ -19,7 +19,7 @@ A // The name of the typedef
// Cyclic through generic type variable bound.
<T extends List<A>> //# 11: compile-time error
-( // The left parenthesis of the typedef arguments.
+ (// The left parenthesis of the typedef arguments.
// Cyclic through parameter type.
A a //# 02: compile-time error
@@ -51,7 +51,7 @@ Class c //# 12: ok
// Reference through a class type bound is not a cyclic self-reference.
Class c //# 13: ok
-); // The right parenthesis of the typedef arguments.
+ ); // The right parenthesis of the typedef arguments.
typedef B(A a);
typedef C(B b);
@@ -66,4 +66,4 @@ void testA(A a) {}
void main() {
testA(null);
-}
+}

Powered by Google App Engine
This is Rietveld 408576698