| 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',
|
|
|