| 106 | /// Identifier |
| 107 | #[derive(Debug, Clone, PartialEq, Eq, Hash)] |
| 108 | pub struct Ident { |
| 109 | pub span: Span, |
| 110 | pub name: String, |
| 111 | } |
| 112 | |
| 113 | impl Ident { |
| 114 | pub fn new(name: String, span: Span) -> Self { |
no outgoing calls
no test coverage detected