(args)
| 4 | |
| 5 | export class BaseArgumentsProcessor { |
| 6 | constructor(args) { |
| 7 | this.args_ = args.slice(); |
| 8 | this.result_ = this.getDefaultResults(); |
| 9 | console.assert(this.result_ !== undefined) |
| 10 | console.assert(this.result_.logFileName !== undefined); |
| 11 | this.argsDispatch_ = this.getArgsDispatch(); |
| 12 | console.assert(this.argsDispatch_ !== undefined); |
| 13 | } |
| 14 | |
| 15 | getDefaultResults() { |
| 16 | throw "Implement in getDefaultResults in subclass"; |
nothing calls this directly
no test coverage detected