(commandOptions, rawArgs)
| 21 | anonymousOptions: ['<command-name (Default: all)>'], |
| 22 | |
| 23 | run(commandOptions, rawArgs) { |
| 24 | if (commandOptions.json) { |
| 25 | this._printJsonHelp(commandOptions); |
| 26 | } else { |
| 27 | this._printHelp(commandOptions, rawArgs); |
| 28 | } |
| 29 | }, |
| 30 | |
| 31 | _printHelp(commandOptions, rawArgs) { |
| 32 | let rootCommand = new RootCommand({ |
nothing calls this directly
no outgoing calls
no test coverage detected