()
| 285 | /** The values at which the thumb will snap. */ |
| 286 | @Input({transform: numberAttribute}) |
| 287 | get step(): number { |
| 288 | return this._step; |
| 289 | } |
| 290 | set step(v: number) { |
| 291 | const step = isNaN(v) ? this._step : v; |
| 292 | if (this._step !== step) { |
nothing calls this directly
no test coverage detected