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

Unified Diff: tests/language_strong/deferred_load_constants_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_strong/deferred_load_constants_test.dart
diff --git a/tests/language_strong/deferred_load_constants_test.dart b/tests/language_strong/deferred_load_constants_test.dart
index 860e66ce25ddf09abb5b4a54e3682b76d20c7148..2d795f431b93ac580083f5e02c132dc929d94a99 100644
--- a/tests/language_strong/deferred_load_constants_test.dart
+++ b/tests/language_strong/deferred_load_constants_test.dart
@@ -24,11 +24,11 @@ main() {
Expect.identical(toplevel, foo.toplevel);
Expect.identical(C.staticfun, foo.C.staticfun);
// Access through deferred prefix is not a constant expression.
- Expect.throws(() => const [foo.c]); /// 01: compile-time error
- Expect.throws(() => const [foo.C]); /// 02: compile-time error
- Expect.throws(() => const [foo.funtype]); /// 03: compile-time error
- Expect.throws(() => const [foo.toplevel]); /// 04: compile-time error
- Expect.throws(() => const [foo.C.staticfun]); /// 05: compile-time error
+ Expect.throws(() => const [foo.c]); // /// 01: compile-time error
+ Expect.throws(() => const [foo.C]); // /// 02: compile-time error
+ Expect.throws(() => const [foo.funtype]); // /// 03: compile-time error
+ Expect.throws(() => const [foo.toplevel]); // /// 04: compile-time error
+ Expect.throws(() => const [foo.C.staticfun]); // /// 05: compile-time error
asyncEnd();
});

Powered by Google App Engine
This is Rietveld 408576698