()
| 229 | /** Allows the user to define the position of the tooltip relative to the parent element */ |
| 230 | @Input('matTooltipPosition') |
| 231 | get position(): TooltipPosition { |
| 232 | return this._position; |
| 233 | } |
| 234 | |
| 235 | set position(value: TooltipPosition) { |
| 236 | if (value !== this._position) { |
nothing calls this directly
no test coverage detected