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

Unified Diff: tests/language/null_is_bottom_type_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/null_is_bottom_type_test.dart
diff --git a/tests/language/null_is_bottom_type_test.dart b/tests/language/null_is_bottom_type_test.dart
index b12137efebd70f9b90f16bafc3f7ddaae6853824..4c0549362a1046f801de53bf24e32602cfb413eb 100644
--- a/tests/language/null_is_bottom_type_test.dart
+++ b/tests/language/null_is_bottom_type_test.dart
@@ -36,25 +36,25 @@ test() {
A a = new A();
List<A> listA;
- testA(n); /// 01: ok
- testA(a); /// 02: ok
- testListA(listNull); /// 03: ok
- testListA(listA); /// 04: ok
+ testA(n); // /// 01: ok
+ testA(a); // /// 02: ok
+ testListA(listNull); // /// 03: ok
+ testListA(listA); // /// 04: ok
- testNull(n); /// 05: ok
- testNull(a); /// 06: ok
- testListNull(listNull); /// 07: ok
- testListNull(listA); /// 08: ok
+ testNull(n); // /// 05: ok
+ testNull(a); // /// 06: ok
+ testListNull(listNull); // /// 07: ok
+ testListNull(listA); // /// 08: ok
- testReturnA(returnA); /// 09: ok
- testReturnA(returnNull); /// 10: ok
+ testReturnA(returnA); // /// 09: ok
+ testReturnA(returnNull); // /// 10: ok
- testReturnNull(returnA); /// 11: ok
- testReturnNull(returnNull); /// 12: ok
+ testReturnNull(returnA); // /// 11: ok
+ testReturnNull(returnNull); // /// 12: ok
- testTakeA(takeA); /// 13: ok
- testTakeA(takeNull); /// 14: ok
+ testTakeA(takeA); // /// 13: ok
+ testTakeA(takeNull); // /// 14: ok
- testTakeNull(takeA); /// 15: ok
- testTakeNull(takeNull); /// 16: ok
+ testTakeNull(takeA); // /// 15: ok
+ testTakeNull(takeNull); // /// 16: ok
}

Powered by Google App Engine
This is Rietveld 408576698