(options: string[])
| 3911 | } |
| 3912 | |
| 3913 | checkOptions(options: string[]) { |
| 3914 | const error = this.env.findBadOptions(options); |
| 3915 | if (error.length > 0) return `Bad options: ${error.join(', ')}`; |
| 3916 | return null; |
| 3917 | } |
| 3918 | |
| 3919 | protected getArgumentParserClass(): typeof BaseParser { |
| 3920 | const exe = this.compiler.exe.toLowerCase(); |