Home
last modified time | relevance | path

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

/third_party/node/test/fixtures/postject-copy/node_modules/commander/lib/
Dcommand.js1072 const subCommand = this._findCommand(commandName);
1073 if (!subCommand) this.help({ error: true });
1076 hookResult = this._chainOrCallSubCommandHook(hookResult, subCommand, 'preSubcommand');
1078 if (subCommand._executableHandler) {
1079 this._executeSubCommand(subCommand, operands.concat(unknown));
1081 return subCommand._parseCommand(operands, unknown);
1220 _chainOrCallSubCommandHook(promise, subCommand, event) { argument
1225 return hook(this, subCommand);