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

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

Issue 202193002: pkg/dartdoc: moving files around, fix library names (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fixed year Created 6 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: pkg/docgen/test/multi_library_code/lib/test_lib_bar.dart
diff --git a/pkg/docgen/test/multi_library_code/lib/test_lib_bar.dart b/pkg/docgen/test/multi_library_code/lib/test_lib_bar.dart
new file mode 100644
index 0000000000000000000000000000000000000000..c329a434ab1bb2ca6c280923c6b65d3b4fa0563e
--- /dev/null
+++ b/pkg/docgen/test/multi_library_code/lib/test_lib_bar.dart
@@ -0,0 +1,19 @@
+library test_lib.bar;
+
+import 'test_lib.dart';
+
+/*
+ * Normal comment for class C.
+ */
+class C {
+}
+
+/// [input] is of type [C] returns an [A].
+A generateFoo(C input) {
+ throw 'noop';
+}
+
+/// Processes a [C] instance for testing.
+///
+/// To eliminate import warnings for [A] and to test typedefs.
+typedef A AnATransformer(C other);
« no previous file with comments | « pkg/docgen/test/multi_library_code/lib/test_lib.dart ('k') | pkg/docgen/test/multi_library_code/lib/test_lib_foo.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698