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

Unified Diff: tests/language_strong/constructor10_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/constructor10_test.dart
diff --git a/tests/language_strong/constructor10_test.dart b/tests/language_strong/constructor10_test.dart
index f4923b7887ca1a647d846c7d7a6d83f94057b481..2906632b5d6140d4ac49e190475fc9e9b7034f62 100644
--- a/tests/language_strong/constructor10_test.dart
+++ b/tests/language_strong/constructor10_test.dart
@@ -11,17 +11,17 @@ class A {
}
class B extends A {
- /* /// 00: compile-time error
+ /* // /// 00: compile-time error
B() : super(null);
- */ /// 00: continued
+ */ // /// 00: continued
}
// ==========
class Y extends A {
- /* /// 01: compile-time error
+ /* // /// 01: compile-time error
Y() : super(null);
- */ /// 01: continued
+ */ // /// 01: continued
}
class Z extends Y {
@@ -31,9 +31,9 @@ class Z extends Y {
// ==============
class G extends A {
- /* /// 02: compile-time error
+ /* // /// 02: compile-time error
G() : super(null);
- */ /// 02: continued
+ */ // /// 02: continued
}
class H extends G {

Powered by Google App Engine
This is Rietveld 408576698