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

Unified Diff: tests/language/function_type_alias5_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/function_type_alias5_test.dart
diff --git a/tests/language/function_type_alias5_test.dart b/tests/language/function_type_alias5_test.dart
index a90f806155f93b5e592b1955e80d10d376ff4d1b..8a3f1d33a7d87da6bd36c3c9aa56f639119757a1 100644
--- a/tests/language/function_type_alias5_test.dart
+++ b/tests/language/function_type_alias5_test.dart
@@ -3,15 +3,15 @@
// BSD-style license that can be found in the LICENSE file.
// Dart test for illegally self referencing function type alias.
-typedef Handle Handle(String command); /// 00: compile-time error
+typedef Handle Handle(String command); // /// 00: compile-time error
-typedef F(F x); /// 01: compile-time error
+typedef F(F x); // /// 01: compile-time error
-typedef A(B x); /// 02: compile-time error
-typedef B(A x); /// 02: continued
+typedef A(B x); // /// 02: compile-time error
+typedef B(A x); // /// 02: continued
main() {
- Handle h; /// 00: continued
- F f; /// 01: continued
- A f; /// 02: continued
+ Handle h; // /// 00: continued
+ F f; // /// 01: continued
+ A f; // /// 02: continued
}

Powered by Google App Engine
This is Rietveld 408576698