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

Unified Diff: tests/lib/mirrors/reflected_type_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_test.dart
diff --git a/tests/lib/mirrors/reflected_type_test.dart b/tests/lib/mirrors/reflected_type_test.dart
index a574434f1b2c273f2939fb5814e3139a0c5b0a77..b3a98f947a6a081414ce3c233355397183fe1c19 100644
--- a/tests/lib/mirrors/reflected_type_test.dart
+++ b/tests/lib/mirrors/reflected_type_test.dart
@@ -62,11 +62,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