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

Unified Diff: tests/language/const_syntax_test.dart

Issue 2763823002: Move spaces from before comments to within comments (Closed)
Patch Set: 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/const_syntax_test.dart
diff --git a/tests/language/const_syntax_test.dart b/tests/language/const_syntax_test.dart
index 59fb362ecb7abe3b53f5226af57c4b2127637de1..508e986bde43efbf52b74bdf5e8cf25f2cafc7c7 100644
--- a/tests/language/const_syntax_test.dart
+++ b/tests/language/const_syntax_test.dart
@@ -42,9 +42,9 @@ main() {
}
const F0 = 42;
-const F1; /// 03: continued
+const F1; // /// 03: continued
const int F2 = 87;
-const int F3; /// 04: continued
+const int F3; // /// 04: continued
class Point {
final x, y;
@@ -56,7 +56,7 @@ class Point {
// user-defined const constructors.
const P0 = const Point(0, 0);
const P1 = const Point(0, 0) + 1; /// 05: continued
-const P2 = new Point(0, 0); /// 06: continued
+const P2 = new Point(0, 0); // /// 06: continued
const P3 = new Point(0, 0) + 1; /// 07: continued
// Check that we cannot have cyclic references in compile time

Powered by Google App Engine
This is Rietveld 408576698