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