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

Side by Side Diff: lib/src/option.dart

Issue 1575233006: Get rid of all the library tags. (Closed) Base URL: git@github.com:dart-lang/args@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « lib/src/help_command.dart ('k') | lib/src/parser.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 library args.src.option;
6
7 import 'dart:collection'; 5 import 'dart:collection';
8 6
9 /// Creates a new [Option]. 7 /// Creates a new [Option].
10 /// 8 ///
11 /// Since [Option] doesn't have a public constructor, this lets [ArgParser] 9 /// Since [Option] doesn't have a public constructor, this lets [ArgParser]
12 /// get to it. This function isn't exported to the public API of the package. 10 /// get to it. This function isn't exported to the public API of the package.
13 Option newOption(String name, String abbreviation, String help, 11 Option newOption(String name, String abbreviation, String help,
14 String valueHelp, List<String> allowed, Map<String, String> allowedHelp, 12 String valueHelp, List<String> allowed, Map<String, String> allowedHelp,
15 defaultValue, Function callback, OptionType type, 13 defaultValue, Function callback, OptionType type,
16 {bool negatable, bool splitCommas, bool hide: false}) { 14 {bool negatable, bool splitCommas, bool hide: false}) {
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 /// --output text --output xml 123 /// --output text --output xml
126 /// 124 ///
127 /// In the parsed [ArgResults], a multiple-valued option will always return 125 /// In the parsed [ArgResults], a multiple-valued option will always return
128 /// a list, even if one or no values were passed. 126 /// a list, even if one or no values were passed.
129 static const MULTIPLE = const OptionType._("OptionType.MULTIPLE"); 127 static const MULTIPLE = const OptionType._("OptionType.MULTIPLE");
130 128
131 final String name; 129 final String name;
132 130
133 const OptionType._(this.name); 131 const OptionType._(this.name);
134 } 132 }
OLDNEW
« no previous file with comments | « lib/src/help_command.dart ('k') | lib/src/parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698