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

Unified Diff: tests/language/compile_time_constant_r_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/compile_time_constant_r_test.dart
diff --git a/tests/language/compile_time_constant_r_test.dart b/tests/language/compile_time_constant_r_test.dart
index 088d6b7d6e729d48bab99b7b3602bfaf6c8f0a02..b186f7ea1441a36b2232956768e708fa00a64d9d 100644
--- a/tests/language/compile_time_constant_r_test.dart
+++ b/tests/language/compile_time_constant_r_test.dart
@@ -3,18 +3,18 @@
// BSD-style license that can be found in the LICENSE file.
const x =
- throw /// 01: compile-time error
+ throw // /// 01: compile-time error
"x";
const y = const {0:
- throw /// 02: compile-time error
+ throw // /// 02: compile-time error
"y"};
main() {
print(x);
print(y);
const z =
- throw /// 03: compile-time error
+ throw // /// 03: compile-time error
1+1+1;
print(z);
}

Powered by Google App Engine
This is Rietveld 408576698