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

Unified Diff: tests/language/mixin_invalid_bound_test.dart

Issue 2763823002: Move spaces from before comments to within comments (Closed)
Patch Set: Fix comments 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/mixin_invalid_bound_test.dart
diff --git a/tests/language/mixin_invalid_bound_test.dart b/tests/language/mixin_invalid_bound_test.dart
index 7e76d440bdf141e617082cd5d94de1fa3a464a27..f0288e949f503a0eb01dd2410153eb3d36047867 100644
--- a/tests/language/mixin_invalid_bound_test.dart
+++ b/tests/language/mixin_invalid_bound_test.dart
@@ -22,14 +22,14 @@ class D<T> extends S<T> with M<bool> { }
class E<T> extends S<bool> with M<T> { }
main() {
- new A<int>(); /// 01: static type warning
- new A<bool>(); /// 02: static type warning, dynamic type error
- new B<int>(); /// 03: static type warning
- new B<bool>(); /// 04: static type warning, dynamic type error
- new C<int>(); /// 05: static type warning
- new C<bool>(); /// 06: static type warning, dynamic type error
- new D<int>(); /// 07: static type warning, dynamic type error
- new D<bool>(); /// 08: static type warning, dynamic type error
- new E<int>(); /// 09: static type warning, dynamic type error
- new E<bool>(); /// 10: static type warning, dynamic type error
+ new A<int>(); // /// 01: static type warning
+ new A<bool>(); // /// 02: static type warning, dynamic type error
+ new B<int>(); // /// 03: static type warning
+ new B<bool>(); // /// 04: static type warning, dynamic type error
+ new C<int>(); // /// 05: static type warning
+ new C<bool>(); // /// 06: static type warning, dynamic type error
+ new D<int>(); // /// 07: static type warning, dynamic type error
+ new D<bool>(); // /// 08: static type warning, dynamic type error
+ new E<int>(); // /// 09: static type warning, dynamic type error
+ new E<bool>(); // /// 10: static type warning, dynamic type error
}

Powered by Google App Engine
This is Rietveld 408576698