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

Unified Diff: tests/language_strong/interface_cycle_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_strong/interface_cycle_test.dart
diff --git a/tests/language_strong/interface_cycle_test.dart b/tests/language_strong/interface_cycle_test.dart
index db57fd1ef3c66cdf1934ca2d50c5a41989473fdc..f0480bb7fda090ccd2dae981d3642c4428db63b2 100644
--- a/tests/language_strong/interface_cycle_test.dart
+++ b/tests/language_strong/interface_cycle_test.dart
@@ -8,11 +8,11 @@ class C implements B {}
class A implements B {}
class B
- implements A /// 01: compile-time error
- implements A /// 02: compile-time error
+ implements A // /// 01: compile-time error
+ implements A // /// 02: compile-time error
{}
main() {
- new C(); /// 01: continued
- new List<C>(); /// 02: continued
+ new C(); // /// 01: continued
+ new List<C>(); // /// 02: continued
}

Powered by Google App Engine
This is Rietveld 408576698