(p: &mut Parser<'a, I>)
| 60 | |
| 61 | impl<'a> Parse<'a> for Todo { |
| 62 | fn parse<I>(p: &mut Parser<'a, I>) -> ParserResult<Self> |
| 63 | where |
| 64 | I: Iterator<Item = Cursor> + Clone, |
| 65 | { |
| 66 | Err(Diagnostic::new(p.next(), Diagnostic::unimplemented))? |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | impl ToCursors for Todo { |