()
| 439 | /** Whether the user should be allowed to select multiple options. */ |
| 440 | @Input({transform: booleanAttribute}) |
| 441 | get multiple(): boolean { |
| 442 | return this._multiple; |
| 443 | } |
| 444 | set multiple(value: boolean) { |
| 445 | if (this._selectionModel && (typeof ngDevMode === 'undefined' || ngDevMode)) { |
| 446 | throw getMatSelectDynamicMultipleError(); |
nothing calls this directly
no test coverage detected