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

Unified Diff: pkg/docgen/test/multi_library_code/lib/temp2.dart

Issue 172873002: pkg/docgen: putting test code in file system (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 6 years, 10 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
« no previous file with comments | « pkg/docgen/test/multi_library_code/lib/temp.dart ('k') | pkg/docgen/test/multi_library_code/lib/temp3.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
+}
« no previous file with comments | « pkg/docgen/test/multi_library_code/lib/temp.dart ('k') | pkg/docgen/test/multi_library_code/lib/temp3.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698