| 76 | } |
| 77 | |
| 78 | fn sanitize_fn(input: Box<InputImplItemFn>) -> Result<SaneMethod> { |
| 79 | let InputImplItemFn { |
| 80 | attrs, |
| 81 | vis, |
| 82 | sig, |
| 83 | body, |
| 84 | } = *input; |
| 85 | |
| 86 | let semi_token = match body { |
nothing calls this directly
no outgoing calls
no test coverage detected