(&self)
| 58 | } |
| 59 | |
| 60 | fn ignore_prefix(&self) -> &Self { |
| 61 | if let Clang::UnaryOperator(_) = &self.kind { |
| 62 | if self.inner.len() == 1 { |
| 63 | return self.inner[0].ignore_parenexpr(); |
| 64 | } |
| 65 | } |
| 66 | self |
| 67 | } |
| 68 | |
| 69 | /// Get the signle child. You must make sure this kind of stmt only has a single child. |
| 70 | fn get_child(&self) -> &Self { |
no test coverage detected