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

Unified Diff: tests/language/class_cycle2_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/class_cycle2_test.dart
diff --git a/tests/language/class_cycle2_test.dart b/tests/language/class_cycle2_test.dart
index 5e352b3ffd4321eade888c132717ac0a1133bc00..00ad363c552dfc6605330860af577d2055da5ca8 100644
--- a/tests/language/class_cycle2_test.dart
+++ b/tests/language/class_cycle2_test.dart
@@ -8,11 +8,11 @@ class C extends B {}
class A extends B {}
class B
- extends A /// 01: compile-time error
- extends A /// 02: compile-time error
+ extends A // /// 01: compile-time error
+ extends 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