(value: string)
| 3132 | |
| 3133 | @Input() |
| 3134 | set prop(value: string) { |
| 3135 | this._prop = value; |
| 3136 | if (this.child && value === 'go') { |
| 3137 | this.child.instance.readyHost = true; |
| 3138 | this.child.instance.readyTpl = true; |
| 3139 | this.child.changeDetectorRef.detectChanges(); |
| 3140 | } |
| 3141 | } |
| 3142 | |
| 3143 | get prop() { |
| 3144 | return this._prop; |
no test coverage detected