Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-04-14 | enum -> enum class in lexer | Aryadev Chavali | |
This makes enum elements scoped which is actually quite useful as I prefer the namespacing that enum's give in C++. | |||
2024-04-14 | Implemented tokenise_buffer | Aryadev Chavali | |
Note that this is basically the same as the previous version, excluding the fact that it uses C++ idioms more and does a bit better in error checking. | |||
2024-04-14 | Wrote a new lexer API in C++ | Aryadev Chavali | |
Essentially a refactor of the C formed lexer into C++ style. I can already see some benefits from doing this, in particular speed of prototyping. |