diff --git a/src/protocol/parser/tokens.rs b/src/protocol/parser/tokens.rs index 5b0e42b581f0bc867a38d59c27ebb4df34984482..107b6a34e08931bb5319971eb0f1f710b44cb668 100644 --- a/src/protocol/parser/tokens.rs +++ b/src/protocol/parser/tokens.rs @@ -300,7 +300,6 @@ impl<'a> TokenIter<'a> { /// Returns the token range belonging to the token returned by `next`. This /// assumes that we're not at the end of the range we're iterating over. - /// TODO: @cleanup Phase out? pub(crate) fn next_positions(&self) -> (InputPosition, InputPosition) { debug_assert!(self.cur < self.end); let token = &self.tokens[self.cur];