about summary refs log tree commit diff
path: root/users/fcuny/exp/monkey/pkg/lexer/lexer.go (follow)
Commit message (Collapse)AuthorAgeFilesLines
* lint: fix a few issuesFranck Cuny2021-05-101-0/+1
|
* lexer: support tokens for equal and not equal.franck cuny2020-01-111-2/+26
| | | | | | | | | The tokens for equal (`==`) and not equal (`!=`) are composed of two characters. We introduce a new helper (`peekChar`) that we use when we encounter the token `=` or `!` to see if this is a token composed of two characters. Add some tests to ensure they are parsed correctly.
* lexer: support more operator tokens.franck cuny2020-01-111-0/+13
| | | | | Support the operator tokens that were added to our tokenizer. This also add a few more tests to ensure we handle them correctly.
* lexer: initial lexerfranck cuny2020-01-111-0/+114
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.