(newOption: Opts)
| 229 | } |
| 230 | |
| 231 | mergeOption(newOption: Opts): void { |
| 232 | const inputRawOption = retrieveRawOption(newOption); |
| 233 | |
| 234 | // FIX #2591 |
| 235 | merge(this.option, newOption, true); |
| 236 | merge(this.settledOption, inputRawOption, true); |
| 237 | |
| 238 | this._doInit(inputRawOption); |
| 239 | } |
| 240 | |
| 241 | private _doInit(inputRawOption: Opts): void { |
| 242 | const thisOption = this.option; |
nothing calls this directly
no test coverage detected