()
| 477 | /** Value of the select control. */ |
| 478 | @Input() |
| 479 | get value(): any { |
| 480 | return this._value; |
| 481 | } |
| 482 | set value(newValue: any) { |
| 483 | const hasAssigned = this._assignValue(newValue); |
| 484 |
nothing calls this directly
no test coverage detected