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

Side by Side Diff: pkg/docgen/bin/docgen.dart

Issue 17745007: Getting docgen to work with the SDK. (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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | pkg/docgen/lib/docgen.dart » ('j') | pkg/docgen/lib/docgen.dart » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'dart:io'; 5 import 'dart:io';
6 6
7 import 'package:args/args.dart'; 7 import 'package:args/args.dart';
8 import 'package:logging/logging.dart'; 8 import 'package:logging/logging.dart';
9 9
10 import '../lib/docgen.dart'; 10 import '../lib/docgen.dart';
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 allowedHelp: {'yaml' : 'Outputs to YAML. (Default)', 45 allowedHelp: {'yaml' : 'Outputs to YAML. (Default)',
46 'json' : 'Outputs to JSON.'}); 46 'json' : 'Outputs to JSON.'});
47 parser.addFlag('yaml', abbr: 'y', 47 parser.addFlag('yaml', abbr: 'y',
48 help: 'Same as output-format=yaml.', negatable: false); 48 help: 'Same as output-format=yaml.', negatable: false);
49 parser.addFlag('json', abbr: 'j', 49 parser.addFlag('json', abbr: 'j',
50 help: 'Same as output-format=json.', negatable: false); 50 help: 'Same as output-format=json.', negatable: false);
51 parser.addFlag('include-private', 51 parser.addFlag('include-private',
52 help: 'Flag to include private declarations.', negatable: false); 52 help: 'Flag to include private declarations.', negatable: false);
53 parser.addFlag('include-sdk', 53 parser.addFlag('include-sdk',
54 help: 'Flag to parse SDK Library files.', negatable: false); 54 help: 'Flag to parse SDK Library files.', negatable: false);
55 parser.addFlag('parse-sdk',
Andrei Mouravski 2013/06/26 04:42:11 More help text needed. Explain what it does in a f
56 help: 'Parses the SDK.', defaultsTo: false, negatable: false);
55 57
56 return parser; 58 return parser;
57 } 59 }
OLDNEW
« no previous file with comments | « no previous file | pkg/docgen/lib/docgen.dart » ('j') | pkg/docgen/lib/docgen.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698