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

Unified Diff: pkg/docgen/test/simple/bin/sub_dir/sub_directory.dart

Issue 16948010: added Command Line Arguments, support for directories, hiding private data, not parsing the SDK, rem (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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/simple/bin/sub_dir/sub_directory.dart
diff --git a/pkg/docgen/test/simple/bin/sub_dir/sub_directory.dart b/pkg/docgen/test/simple/bin/sub_dir/sub_directory.dart
new file mode 100644
index 0000000000000000000000000000000000000000..65e42770b3ad2d4d08054a0e9cb58e5e196f4ba6
--- /dev/null
+++ b/pkg/docgen/test/simple/bin/sub_dir/sub_directory.dart
@@ -0,0 +1,9 @@
+part of DummyLibrary;
+
+/// Class in dart file in sub-directory.
+class D {
+ int num;
+
+ /// Constructor for [D]
+ D(this.num);
+}

Powered by Google App Engine
This is Rietveld 408576698