()
| 525 | */ |
| 526 | @Input() |
| 527 | get dataSource(): CdkTableDataSourceInput<T> { |
| 528 | return this._dataSource; |
| 529 | } |
| 530 | set dataSource(dataSource: CdkTableDataSourceInput<T>) { |
| 531 | if (this._dataSource !== dataSource) { |
| 532 | this._switchDataSource(dataSource); |
nothing calls this directly
no test coverage detected