(options)
| 8 | |
| 9 | class JsonGenerator { |
| 10 | constructor(options) { |
| 11 | options = options || {}; |
| 12 | |
| 13 | this.ui = options.ui; |
| 14 | this.project = options.project; |
| 15 | this.commands = options.commands; |
| 16 | this.tasks = options.tasks; |
| 17 | } |
| 18 | |
| 19 | generate(commandOptions) { |
| 20 | let rootCommand = new RootCommand({ |
nothing calls this directly
no outgoing calls
no test coverage detected