(span: Span, message: String)
| 16 | |
| 17 | impl ParseError { |
| 18 | pub fn new(span: Span, message: String) -> Self { |
| 19 | Self { span, message } |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | impl fmt::Display for ParseError { |
nothing calls this directly
no outgoing calls
no test coverage detected