(value: any)
| 536 | } |
| 537 | |
| 538 | private updateTarget(value: any) { |
| 539 | if (this.updating) { |
| 540 | return; |
| 541 | } |
| 542 | |
| 543 | this.updateOptions(this.targetOptions, types.isNullOrUndefined(value) ? unsetValue : value); |
| 544 | } |
| 545 | |
| 546 | private updateSource(value: any) { |
| 547 | if (this.updating || !this.source || !this.source.get()) { |
no test coverage detected