()
| 69 | /** The date to display in this year view (everything other than the year is ignored). */ |
| 70 | @Input() |
| 71 | get activeDate(): D { |
| 72 | return this._activeDate; |
| 73 | } |
| 74 | set activeDate(value: D) { |
| 75 | let oldActiveDate = this._activeDate; |
| 76 | const validDate = |
nothing calls this directly
no test coverage detected