TODO about using str.chars() instead of my own janky character iteration stuff

This commit is contained in:
Eryn Wells 2017-04-22 12:30:15 -07:00
parent d41fe37d6a
commit d9e3f24146

View file

@ -17,6 +17,8 @@ exhaustive, though I will continue to add to it as I think of things...
### `sibillexer` -- The lexer
- [ ] Make the Lexer Peekable
- [ ] Use character iterators (`str.chars()`) instead of my own code to iterate
through characters in the input
- [ ] Rational numbers
- [ ] Complex numbers
- [ ] Quasiquotes (this is not context free apparently, so I expect Badness)