(value: any)
| 544 | } |
| 545 | |
| 546 | private updateSource(value: any) { |
| 547 | if (this.updating || !this.source || !this.source.get()) { |
| 548 | return; |
| 549 | } |
| 550 | |
| 551 | this.updateOptions(this.sourceOptions, value); |
| 552 | } |
| 553 | |
| 554 | private getParentView(target: any, property: string): { view: ViewBase; index: number } { |
| 555 | if (!target) { |
no test coverage detected