diff --git a/src/parser.rs b/src/parser.rs index 5bbf015..770f24f 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -21,6 +21,7 @@ fn space() -> impl Parser { } fn ident() -> impl Parser { + // TODO Forbid keywords text::ident().map_with_span(|name, span| Ident { name, span }) }