aboutsummaryrefslogtreecommitdiff
path: root/src/cljcc/lexer.clj
AgeCommit message (Collapse)Author
2024-08-30Add compound assignment operatorsShagun Agrawal
Added compound assignment operators ( >>==, += etc ) Pass chapter 5 extra credit tests
2024-08-19Lexer and parser changes for ch4Shagun Agrawal
Add logical and relational operators
2024-08-16Add lexer implementation for ch2Shagun Agrawal
Add lexer implementation Add reference for base implementation of the lexer
2024-08-16Switch to hand made parser, refactor asts to adjust changeShagun Agrawal
Switch to hand made recursive descent parser. Remove instaparse from dependencies.
2024-08-11Add lexerShagun Agrawal
Add custom lexer Pass chapter 1 lex stages