(commandName)
| 116 | }, |
| 117 | |
| 118 | _resolveCommand(commandName) { |
| 119 | let Command = this.commands[stringUtils.classify(commandName)] || this._lookupCommand(this.commands, commandName); |
| 120 | |
| 121 | return new Command({ |
| 122 | ui: this.ui, |
| 123 | project: this.project, |
| 124 | commands: this.commands, |
| 125 | tasks: this.tasks, |
| 126 | }); |
| 127 | }, |
| 128 | |
| 129 | _lookupCommand(commands, commandName) { |
| 130 | return lookupCommand(commands, commandName); |
nothing calls this directly
no test coverage detected
searching dependent graphs…