Index: tests/compiler/dart2js/mirrors_helper.dart |
diff --git a/tests/compiler/dart2js/mirrors_helper.dart b/tests/compiler/dart2js/mirrors_helper.dart |
index 52d9bb9cf82669e56b43729e329de101e56cd00a..1fb7ab3ac23cba7c60d3095a05a80db997e702c8 100644 |
--- a/tests/compiler/dart2js/mirrors_helper.dart |
+++ b/tests/compiler/dart2js/mirrors_helper.dart |
@@ -14,7 +14,10 @@ main() { |
} |
+/// Singleline doc comment. |
@Metadata // This is intentionally the type literal. |
+// Singleline comment 1. |
+// Singleline comment 2. |
@Metadata(null) |
@Metadata(true) |
@Metadata(false) |
@@ -24,10 +27,12 @@ main() { |
@Metadata(const ["Foo"]) |
@Metadata(const {'foo':"Foo"}) |
@metadata |
-class Foo { |
+/** Multiline doc comment. */ |
+/* Multiline comment. */ class Foo { |
} |
+ |
abstract class Bar<E> { |
} |