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

Unified Diff: pkg/docgen/test/multi_library_code/lib/temp.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/generate_json_test.dart ('k') | pkg/docgen/test/multi_library_code/lib/temp2.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/temp.dart
diff --git a/pkg/docgen/test/multi_library_code/lib/temp.dart b/pkg/docgen/test/multi_library_code/lib/temp.dart
new file mode 100644
index 0000000000000000000000000000000000000000..694a8a75f93fea251ab65af7537b4509b0d9d0ef
--- /dev/null
+++ b/pkg/docgen/test/multi_library_code/lib/temp.dart
@@ -0,0 +1,36 @@
+library testLib;
+import 'temp2.dart';
+import 'temp3.dart';
+export 'temp2.dart';
+export 'temp3.dart';
+
+/**
+ * Doc comment for class [A].
+ *
+ * Multiline Test
+ */
+/*
+ * Normal comment for class A.
+ */
+class A {
+
+ int _someNumber;
+
+ A() {
+ _someNumber = 12;
+ }
+
+ A.customConstructor();
+
+ /**
+ * Test for linking to parameter [A]
+ */
+ void doThis(int A) {
+ print(A);
+ }
+}
+
+// A trivial use of `B` and `C` to eliminate import warnings
+B sampleMethod(C cInstance) {
+ throw new UnimplementedError();
+}
« no previous file with comments | « pkg/docgen/test/generate_json_test.dart ('k') | pkg/docgen/test/multi_library_code/lib/temp2.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698