(args)
| 23 | result() { return this.result_ } |
| 24 | |
| 25 | static process(args) { |
| 26 | const processor = new this(args); |
| 27 | if (processor.parse()) { |
| 28 | return processor.result(); |
| 29 | } else { |
| 30 | processor.printUsageAndExit(); |
| 31 | return false; |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | printUsageAndExit() { |
| 36 | console.log('Cmdline args: [options] [log-file-name]\n' + |
nothing calls this directly
no test coverage detected