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

Unified Diff: tests/lib_strong/mirrors/reflect_class_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/lib_strong/mirrors/reflect_class_test.dart
diff --git a/tests/lib_strong/mirrors/reflect_class_test.dart b/tests/lib_strong/mirrors/reflect_class_test.dart
index 29f546626240fdc6d3c139832666d2eccd0eaa16..b2272cf47eb0eebc83b88efc980d87eb09f51a1b 100644
--- a/tests/lib_strong/mirrors/reflect_class_test.dart
+++ b/tests/lib_strong/mirrors/reflect_class_test.dart
@@ -12,7 +12,7 @@ main() {
Function expectedError = (e) => e is ArgumentError || e is TypeError;
Expect.throws(() => reflectClass(dynamic), expectedError);
- Expect.throws(() => reflectClass(1), expectedError); /// 01: static type warning
- Expect.throws(() => reflectClass("string"), expectedError); /// 02: static type warning
+ Expect.throws(() => reflectClass(1), expectedError); // /// 01: static type warning
+ Expect.throws(() => reflectClass("string"), expectedError); // /// 02: static type warning
Expect.throws(() => reflectClass(FooFunction), expectedError);
}

Powered by Google App Engine
This is Rietveld 408576698