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

Unified Diff: tests/lib/mirrors/reflected_type_classes_test.dart

Issue 2763823002: Move spaces from before comments to within comments (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/lib/mirrors/reflected_type_classes_test.dart
diff --git a/tests/lib/mirrors/reflected_type_classes_test.dart b/tests/lib/mirrors/reflected_type_classes_test.dart
index 4eeb3d8f29c412487853c9f2ddc45a9e0f5934d7..74eeb99da678bd3fa5be482c3edd30dad8b6b0ab 100644
--- a/tests/lib/mirrors/reflected_type_classes_test.dart
+++ b/tests/lib/mirrors/reflected_type_classes_test.dart
@@ -40,11 +40,11 @@ main() {
expectReflectedType(reflect(new A<num>()).type, new A<num>().runtimeType);
expectReflectedType(reflect(new B<num>()).type.superclass, /// 02: static type warning
- new A<dynamic>().runtimeType); /// 02: continued
+ new A<dynamic>().runtimeType); // /// 02: continued
expectReflectedType(reflect(new C<num>()).type.superclass, /// 01: continued
- new A<dynamic>().runtimeType); /// 01: continued
+ new A<dynamic>().runtimeType); // /// 01: continued
expectReflectedType(reflect(new D<num>()).type.superclass, /// 03: static type warning
- new A<int>().runtimeType); /// 03: continued
+ new A<int>().runtimeType); // /// 03: continued
expectReflectedType(reflect(new E<num>()).type, new E<num>().runtimeType);
expectReflectedType(reflect(new E<num>()).type.superclass,
new A<num>().runtimeType);

Powered by Google App Engine
This is Rietveld 408576698