aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/exp/monkey/pkg/lexer (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-01-11lexer: support more operator tokens.franck cuny2-1/+31
Support the operator tokens that were added to our tokenizer. This also add a few more tests to ensure we handle them correctly.
2020-01-11lexer: initial lexerfranck cuny2-0/+218
The initial lexer for the monkey language. We only support a small subset at this stage. We have some simple tests to ensure that we can parse some small snippet, and that the minimum number of tokens we need are also all supported correctly.