| 179 | InputImplItemFnBody::Block(..) => Ok(SaneItem::FnWithExplicitImpl(input)), |
| 180 | InputImplItemFnBody::SemiColon(_semi_token) => Ok(SaneItem::Method(SaneMethod { |
| 181 | attrs: input.attrs, |
| 182 | vis: input.vis, |
| 183 | sig: sanitize_method_signature(input.sig)?, |
| 184 | _semi_token, |
| 185 | })), |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | fn generate_output(sane: SaneImplTrait) -> Result<TokenStream> { |
nothing calls this directly
no outgoing calls
no test coverage detected