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

Unified Diff: tests/language_strong/duplicate_implements_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/duplicate_implements_test.dart
diff --git a/tests/language_strong/duplicate_implements_test.dart b/tests/language_strong/duplicate_implements_test.dart
index e9ff103dcfa786055cd5231e53399cd54403bd2a..c85e40c98fb3453bf9015c4efedd52a0154e86e4 100644
--- a/tests/language_strong/duplicate_implements_test.dart
+++ b/tests/language_strong/duplicate_implements_test.dart
@@ -8,15 +8,15 @@ abstract class I { }
abstract class J { }
abstract class K<T> { }
-class X implements I, J, I { } /// 01: compile-time error
-class X implements J, I, K<int>, K<int> { } /// 02: compile-time error
+class X implements I, J, I { } // /// 01: compile-time error
+class X implements J, I, K<int>, K<int> { } // /// 02: compile-time error
-abstract class Z implements I, J, J { } /// 03: compile-time error
-abstract class Z implements K<int>, K<int> { } /// 04: compile-time error
+abstract class Z implements I, J, J { } // /// 03: compile-time error
+abstract class Z implements K<int>, K<int> { } // /// 04: compile-time error
main() {
- X x = new X(); /// 01: continued
- X x = new X(); /// 02: continued
- Z z = new Z(); /// 03: continued
- Z z = new Z(); /// 04: continued
+ X x = new X(); // /// 01: continued
+ X x = new X(); // /// 02: continued
+ Z z = new Z(); // /// 03: continued
+ Z z = new Z(); // /// 04: continued
}

Powered by Google App Engine
This is Rietveld 408576698