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

Unified Diff: tests/language_strong/multiline_newline_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/multiline_newline_test.dart
diff --git a/tests/language_strong/multiline_newline_test.dart b/tests/language_strong/multiline_newline_test.dart
index f250b28b944eb911d3029ea1d0c2159c51c3b1af..e081e90bf86ba90cccc57f60591d9916bb168351 100644
--- a/tests/language_strong/multiline_newline_test.dart
+++ b/tests/language_strong/multiline_newline_test.dart
@@ -32,14 +32,14 @@ main() {
Expect.isTrue(c2);
Expect.isTrue(c3);
- const c4 = c1 ? 1 : 2; /// 01: ok
- Expect.equals(1, c4); /// 01: continued
+ const c4 = c1 ? 1 : 2; // /// 01: ok
+ Expect.equals(1, c4); // /// 01: continued
- const c5 = c2 ? 2 : 3; /// 02: ok
- Expect.equals(2, c5); /// 02: continued
+ const c5 = c2 ? 2 : 3; // /// 02: ok
+ Expect.equals(2, c5); // /// 02: continued
- const c6 = c3 ? 3 : 4; /// 03: ok
- Expect.equals(3, c6); /// 03: continued
+ const c6 = c3 ? 3 : 4; // /// 03: ok
+ Expect.equals(3, c6); // /// 03: continued
const c7 =
cr.constantMultilineString != crlf.constantMultilineString ? true : null;
@@ -51,7 +51,7 @@ main() {
Expect.isNull(c8);
Expect.isNull(c9);
- const c10 = c7 ? 1 : 2; /// 04: compile-time error
- const c11 = c8 ? 2 : 3; /// 05: compile-time error
- const c12 = c9 ? 3 : 4; /// 06: compile-time error
+ const c10 = c7 ? 1 : 2; // /// 04: compile-time error
+ const c11 = c8 ? 2 : 3; // /// 05: compile-time error
+ const c12 = c9 ? 3 : 4; // /// 06: compile-time error
}

Powered by Google App Engine
This is Rietveld 408576698