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

Unified Diff: tests/language_strong/class_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/class_cycle_test.dart
diff --git a/tests/language_strong/class_cycle_test.dart b/tests/language_strong/class_cycle_test.dart
index 4c8a3827df5b7818795787c8894e11dc4ab9c66e..18be64c3a957830f575ca2dad99015df1b87003a 100644
--- a/tests/language_strong/class_cycle_test.dart
+++ b/tests/language_strong/class_cycle_test.dart
@@ -12,19 +12,19 @@ class C {
}
class Bar
- extends Foo /// 00: compile-time error
- implements Foo /// 01: compile-time error
+ extends Foo // /// 00: compile-time error
+ implements Foo // /// 01: compile-time error
{
}
class ImplementsC implements C
-, C /// 02: compile-time error
+, C // /// 02: compile-time error
{}
// Spec says: It is a compile-time error if the superclass
// of a class C appears in the implements clause of C.
class ExtendsC extends C
-implements C /// 03: compile-time error
+implements C // /// 03: compile-time error
{}
main() {

Powered by Google App Engine
This is Rietveld 408576698