MCPcopy Index your code
hub / github.com/ember-cli/ember-cli / _printHelpForCommand

Function _printHelpForCommand

lib/commands/help.js:106–116  ·  view source on GitHub ↗
(commandName, detailed, options)

Source from the content-addressed store, hash-verified

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);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…