(commandName, detailed, options)
| 104 | }, |
| 105 | |
| 106 | _printHelpForCommand(commandName, detailed, options) { |
| 107 | let command = this._resolveCommand(commandName); |
| 108 | |
| 109 | if (!command.skipHelp || detailed) { |
| 110 | this.ui.writeLine(command.printBasicHelp(options)); |
| 111 | } |
| 112 | |
| 113 | if (detailed) { |
| 114 | command.printDetailedHelp(options); |
| 115 | } |
| 116 | }, |
| 117 | |
| 118 | _resolveCommand(commandName) { |
| 119 | let Command = this.commands[stringUtils.classify(commandName)] || this._lookupCommand(this.commands, commandName); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…