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

Unified Diff: tests/lib_strong/mirrors/metadata_scope_test.dart

Issue 2774783002: Re-land "Format all multitests" (Closed)
Patch Set: 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/metadata_scope_test.dart
diff --git a/tests/lib_strong/mirrors/metadata_scope_test.dart b/tests/lib_strong/mirrors/metadata_scope_test.dart
index 6f20ea1ab76d4013bfa350d13afed69620c6d36e..521dee6563abfa26bd6ff4a34386dc2756d031a4 100644
--- a/tests/lib_strong/mirrors/metadata_scope_test.dart
+++ b/tests/lib_strong/mirrors/metadata_scope_test.dart
@@ -16,7 +16,7 @@ class Annotation {
// Note there is no compile-time constant 'foo' in scope. In particular, A.foo
// is not in scope here.
@Annotation(foo) // //# 01: compile-time error
-class A <@Annotation(foo) T> {
+class A<@Annotation(foo) T> {
@Annotation(foo)
static foo() {}
@@ -25,7 +25,7 @@ class A <@Annotation(foo) T> {
}
@Annotation(B.foo)
-class B <@Annotation(B.foo) T> {
+class B<@Annotation(B.foo) T> {
@Annotation(B.foo)
static foo() {}
@@ -37,7 +37,7 @@ baz() {}
// Note the top-level function baz is in scope here, not C.baz.
@Annotation(baz)
-class C <@Annotation(baz) T> {
+class C<@Annotation(baz) T> {
@Annotation(baz)
static baz() {}
}
« no previous file with comments | « tests/lib_strong/mirrors/metadata_nested_constructor_call_test.dart ('k') | tests/lib_strong/mirrors/mirrors_nsm_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698