Home
last modified time | relevance | path

Searched refs:visibleCommands (Results 1 – 3 of 3) sorted by relevance

/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/
Dhelp.js29 visibleCommands(cmd) { method in Help
30 const visibleCommands = cmd.commands.filter(cmd => !cmd._hidden);
38 visibleCommands.push(helpCommand);
41 visibleCommands.sort((a, b) => {
46 return visibleCommands;
183 return helper.visibleCommands(cmd).reduce((max, command) => {
399 const commandList = helper.visibleCommands(cmd).map((cmd) => {
Dcommand.js1773 this.createHelp().visibleCommands(this).forEach((command) => {
/third_party/node/test/fixtures/postject-copy/node_modules/commander/typings/
Dindex.d.ts225 visibleCommands(cmd: Command): Command[];