Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | support multiple input filenames | ubq323 | 2024-06-26 | 1 | -11/+33 |
| | |||||
* | parse multiple expressions | ubq323 | 2024-06-26 | 1 | -6/+13 |
| | |||||
* | add setting locals | ubq323 | 2024-06-25 | 1 | -4/+17 |
| | |||||
* | allow local resolution into outer scopes | ubq323 | 2024-06-25 | 1 | -15/+17 |
| | |||||
* | get functions and arguments and returning to work fully | ubq323 | 2024-06-25 | 1 | -25/+40 |
| | |||||
* | add local variables and (let) form | ubq323 | 2024-06-24 | 1 | -17/+96 |
| | |||||
* | keep track of stack position while compiling | ubq323 | 2024-06-24 | 1 | -23/+77 |
| | |||||
* | chunk_wconst -> compile_constant | ubq323 | 2024-06-24 | 1 | -6/+6 |
| | |||||
* | chunk_wbc -> compile_opcode | ubq323 | 2024-06-24 | 1 | -29/+29 |
| | |||||
* | refactor error checking and argument parsing | ubq323 | 2024-06-24 | 1 | -30/+29 |
| | |||||
* | compilation of functions, and some parts of interpreting them | ubq323 | 2024-06-22 | 1 | -17/+26 |
| | |||||
* | add function literals | ubq323 | 2024-06-22 | 1 | -7/+37 |
| | |||||
* | fix circular dependencies | ubq323 | 2024-06-22 | 1 | -0/+8 |
| | |||||
* | put state and chunk into new compiler struct; refactor mildly | ubq323 | 2024-06-21 | 1 | -73/+116 |
| | |||||
* | refactor compilation of builtin forms | ubq323 | 2024-06-21 | 1 | -101/+158 |
| | |||||
* | mandelbrot | ubq323 | 2024-06-21 | 1 | -0/+4 |
| | |||||
* | print -> puts | ubq323 | 2024-06-21 | 1 | -4/+4 |
| | |||||
* | add tests, and make dumping disasm optional | ubq323 | 2024-06-21 | 1 | -6/+7 |
| | |||||
* | minor optimization | ubq323 | 2024-06-21 | 1 | -0/+1 |
| | |||||
* | while loops, comparisons, modulo, fizzbuzz | ubq323 | 2024-06-21 | 1 | -6/+34 |
| | |||||
* | add (if cond if-true if-false) builtin | ubq323 | 2024-06-20 | 1 | -10/+45 |
| | |||||
* | add true, false, nil keywords | ubq323 | 2024-06-20 | 1 | -5/+13 |
| | |||||
* | globals are now variable | ubq323 | 2024-06-20 | 1 | -19/+37 |
| | |||||
* | add readable globals | ubq323 | 2024-06-20 | 1 | -3/+16 |
| | |||||
* | string interning and print statement | ubq323 | 2024-06-20 | 1 | -3/+10 |
| | |||||
* | pass State *S everywhere | ubq323 | 2024-06-20 | 1 | -14/+21 |
| | | | | contains changes from a million years ago that i don't remember much about | ||||
* | refactor hashtables, and use objstrings for keys | ubq323 | 2023-08-05 | 1 | -1/+1 |
| | | | | | doesn't yet work without string interning, which will require further refactoring | ||||
* | add string object values. you can't do anything with them yet | ubq323 | 2023-08-04 | 1 | -5/+10 |
| | |||||
* | rename "symbol" to "ident" everywhere | ubq323 | 2023-08-04 | 1 | -3/+3 |
| | |||||
* | add strings to parser | ubq323 | 2023-08-03 | 1 | -0/+4 |
| | |||||
* | remove hardcoded bytecode test | ubq323 | 2023-08-03 | 1 | -15/+0 |
| | |||||
* | compilation of basic arithmetic exprs to bytecode | ubq323 | 2023-08-01 | 1 | -0/+70 |