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

Unified Diff: pkg/dartdoc/bin/dartdoc.dart

Issue 11176004: Constructors are handled correct in dartdoc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 8 years, 2 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 | « no previous file | pkg/dartdoc/lib/dartdoc.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/dartdoc/bin/dartdoc.dart
diff --git a/pkg/dartdoc/bin/dartdoc.dart b/pkg/dartdoc/bin/dartdoc.dart
index 4bddd7248ec15dd053dfc20a988906d43f19e510..5e728e87fecbfbb1632315e88938524b29c89613 100644
--- a/pkg/dartdoc/bin/dartdoc.dart
+++ b/pkg/dartdoc/bin/dartdoc.dart
@@ -98,6 +98,16 @@ main() {
defaultsTo: false, negatable: false,
callback: (linkApi) => dartdoc.linkToApi = linkApi);
+ argParser.addFlag('show-private',
+ help: 'Document private types and members.',
+ defaultsTo: false,
+ callback: (showPrivate) => dartdoc.showPrivate = showPrivate);
+
+ argParser.addFlag('inherit-from-object',
+ help: 'Show members inherited from Object.',
+ defaultsTo: false, negatable: false,
+ callback: (inherit) => dartdoc.inheritFromObject = inherit);
+
argParser.addFlag('enable-diagnostic-colors', negatable: false);
argParser.addOption('out',
« no previous file with comments | « no previous file | pkg/dartdoc/lib/dartdoc.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698