(&self, cursor: Ident)
| 50 | } |
| 51 | |
| 52 | pub fn equals_atom(&self, cursor: Ident) -> TokenStream { |
| 53 | let atom = self.path(); |
| 54 | quote! { p.equals_atom(#cursor.into(), &#atom) } |
| 55 | } |
| 56 | |
| 57 | pub fn to_atom(&self, cursor: Ident) -> TokenStream { |
| 58 | let atom_set = self.first_segment(); |
no test coverage detected