()
| 284 | let AvailableOptionsInitCommand = Command.extend({ |
| 285 | name: 'available-options-init-command', |
| 286 | init() { |
| 287 | this._super.apply(this, arguments); |
| 288 | |
| 289 | this.availableOptions = [ |
| 290 | { |
| 291 | name: 'spicy', |
| 292 | type: String, |
| 293 | default: true, |
| 294 | }, |
| 295 | ]; |
| 296 | }, |
| 297 | run(options) { |
| 298 | return options; |
| 299 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…