4 instantiations of ChildSymbolList
System.CommandLine (4)
Command.cs (3)
62public IList<Argument> Arguments => _arguments ??= new(this); 72public IList<Option> Options => _options ??= new (this); 79public IList<Command> Subcommands => _subcommands ??= new(this);
RootCommand.cs (1)
35Directives = new ChildSymbolList<Directive>(this)
3 references to ChildSymbolList
System.CommandLine (3)
Command.cs (3)
28private ChildSymbolList<Argument>? _arguments; 29private ChildSymbolList<Option>? _options; 30private ChildSymbolList<Command>? _subcommands;