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

Unified Diff: tests/language/regress_27617_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/regress_27617_test.dart
diff --git a/tests/language/regress_27617_test.dart b/tests/language/regress_27617_test.dart
index 9a0fdbd9f9f21787e347ba48b45b2c431269884b..f584b44f9a2b08e72e8f995218d9e9332baa861b 100644
--- a/tests/language/regress_27617_test.dart
+++ b/tests/language/regress_27617_test.dart
@@ -8,9 +8,9 @@ class Foo {
Foo._(this.greeting) { }
// Const constructor must not redirect to non-const constructor.
- const Foo.hi() : this._('hi'); /// 1: compile-time error
+ const Foo.hi() : this._('hi'); // /// 1: compile-time error
}
main() {
- const h = const Foo.hi(); /// 1: continued
+ const h = const Foo.hi(); // /// 1: continued
}

Powered by Google App Engine
This is Rietveld 408576698