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

Unified Diff: tests/language_strong/cyclic_typedef_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
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 6b967074ca8a7b3b5cd0b27c71c7d2f9a36f4172..1f42e613fa3885263cd7d5d75c432c148a687130 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 //# 01: compile-time error
// 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);
-}
+}
« no previous file with comments | « tests/language_strong/cyclic_type_variable_test.dart ('k') | tests/language_strong/default_factory2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698