Lines Matching defs:CommandOption
26 struct CommandOption { struct
27 std::vector<std::string> GroupsArg;
28 bool Required = false;
29 std::string FullName;
30 std::string ShortName;
31 std::string ArgType;
32 bool OptionalArg = false;
33 std::string Validator;
34 std::vector<StringRef> Completions;
35 std::string Description;
38 CommandOption(Record *Option) { in CommandOption() function