(self)
| 112 | return self.remove_pointer().remove_const().remove_reference() |
| 113 | |
| 114 | def decay(self) -> 'Type': |
| 115 | t = self.remove_reference() |
| 116 | if t.is_pointer(): |
| 117 | return t |
| 118 | else: |
| 119 | return t.remove_const() |
| 120 | |
| 121 | def const_compatible(self, t: 'Type'): |
| 122 | if t.is_const(): |
no test coverage detected