(sel: Sel)
| 88 | method_decl_impl!(A, B, C, D, E, F, G, H, I, J, K, L); |
| 89 | |
| 90 | fn count_args(sel: Sel) -> usize { |
| 91 | sel.name().chars().filter(|&c| c == ':').count() |
| 92 | } |
| 93 | |
| 94 | fn method_type_encoding(ret: &Encoding, args: &[Encoding]) -> CString { |
| 95 | let mut types = ret.as_str().to_owned(); |
no test coverage detected