(value: string)
| 2869 | |
| 2870 | @Input() |
| 2871 | set prop(value: string) { |
| 2872 | this._prop = value; |
| 2873 | if (this.child && value === 'go') { |
| 2874 | this.child.instance.readyHost = true; |
| 2875 | this.child.instance.readyTpl = true; |
| 2876 | this.child.changeDetectorRef.detectChanges(); |
| 2877 | } |
| 2878 | } |
| 2879 | |
| 2880 | get prop() { |
| 2881 | return this._prop; |
no test coverage detected