Index: pkg/docgen/test/multi_library_code/lib/temp2.dart |
diff --git a/pkg/docgen/test/multi_library_code/lib/temp2.dart b/pkg/docgen/test/multi_library_code/lib/temp2.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..ad62c09c2c906d80bcbb8e8e4805f44a32e66bc2 |
--- /dev/null |
+++ b/pkg/docgen/test/multi_library_code/lib/temp2.dart |
@@ -0,0 +1,36 @@ |
+library testLib2.foo; |
+import 'temp.dart'; |
+ |
+/** |
+ * Doc comment for class [B]. |
+ * |
+ * Multiline Test |
+ */ |
+ |
+/* |
+ * Normal comment for class B. |
+ */ |
+class B extends A { |
+ |
+ B(); |
+ B.fooBar(); |
+ |
+ /** |
+ * Test for linking to super |
+ */ |
+ int doElse(int b) { |
+ print(b); |
+ return b; |
+ } |
+ |
+ /** |
+ * Test for linking to parameter [c] |
+ */ |
+ void doThis(int c) { |
+ print(c); |
+ } |
+} |
+ |
+int testFunc(int a) { |
+ return a; |
+} |