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

Unified Diff: tests/language/reify_typevar_static_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/reify_typevar_static_test.dart
diff --git a/tests/language/reify_typevar_static_test.dart b/tests/language/reify_typevar_static_test.dart
index ed510f0ee010b3fa313236e6d85f28e36df3beb7..fb9bf9acb3a1dc8c750cfd18cef18784e5377d1e 100644
--- a/tests/language/reify_typevar_static_test.dart
+++ b/tests/language/reify_typevar_static_test.dart
@@ -9,16 +9,16 @@ class C<T> {
C([this.x]);
static staticFunction(bool b) =>
- b ? T : /// 00: compile-time error
+ b ? T : // /// 00: compile-time error
null;
factory C.factoryConstructor(bool b) => new C(
- b ? T : /// 01: ok
+ b ? T : // /// 01: ok
null);
C.redirectingConstructor(bool b) : this(
- b ? T : /// 02: ok
+ b ? T : // /// 02: ok
null);
C.ordinaryConstructor(bool b) : x =
- b ? T : /// 03: ok
+ b ? T : // /// 03: ok
null;
}

Powered by Google App Engine
This is Rietveld 408576698