aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
Commit message (Expand)AuthorAgeFilesLines
...
* Add a bunch of op types to the VMBad Diode2024-06-191-48/+188
* Implement the worlds worst register machineBad Diode2024-06-191-31/+96
* Add barebones stack vmBad Diode2024-06-191-2/+126
* Move parser to its own fileBad Diode2024-06-191-977/+1
* Change a few syntax constructs for consistencyBad Diode2024-06-191-4/+12
* Add basic while loopBad Diode2024-06-181-1/+20
* Add `tests` target to makefileBad Diode2024-06-181-3/+15
* Add `cond` conditionalsBad Diode2024-06-181-0/+23
* Add enum parsingBad Diode2024-06-181-9/+46
* Fix some syntax issues with match casesBad Diode2024-06-181-5/+7
* Add parsing for match-case statementsBad Diode2024-06-181-4/+55
* Add parsing support for basic conditionals and blocksBad Diode2024-06-181-1/+55
* Fix a corner case with symbol indexingBad Diode2024-06-181-2/+11
* Add char 'c' literalsBad Diode2024-06-181-5/+13
* Add pointersBad Diode2024-06-181-19/+35
* Add array types and array symbol accessBad Diode2024-06-181-6/+30
* Add struct literalsBad Diode2024-06-181-34/+33
* Add let, set and struct definitionsBad Diode2024-06-181-190/+219
* Add let/set/struct parsingBad Diode2024-06-171-48/+288
* Add support for parsing long long unsigned integers if using hexBad Diode2024-06-161-2/+12
* Adding basic strings and symbols parsingBad Diode2024-06-161-0/+37
* Add bitwise parsing operationsBad Diode2024-06-161-6/+39
* Add parsing for logical operatorsBad Diode2024-06-161-12/+87
* Add floating point number parsingBad Diode2024-06-161-13/+32
* Remove redundant function name and update precedence namingBad Diode2024-06-161-15/+9
* Update clang-format and cland optionsBad Diode2024-06-161-71/+17
* Add graphviz visualization for the parse treeBad Diode2024-06-161-30/+219
* Setup initial Pratt parserBad Diode2024-06-161-5/+187
* Move lexer code to lexer.c fileBad Diode2024-06-151-619/+12
* Finish basic lexingBad Diode2024-06-151-56/+107
* Add better numeric lexingBad Diode2024-06-151-17/+61
* Add many scanning functionsBad Diode2024-06-151-43/+301
* Add initial scanner functionsBad Diode2024-06-151-25/+271
* Add %c to loggin functionBad Diode2024-06-151-6/+5
* Remove unnecessary casts and test arena free/reallocBad Diode2024-06-151-13/+30
* Add a new log_func to check the memory of an Array/StrBad Diode2024-06-151-4/+6
* Fix some __VA_ARGS__ macro issues (ugh)Bad Diode2024-06-151-14/+17
* Streamline the creation of default loggers and custom log_fnBad Diode2024-06-151-57/+4
* Add a custom logging dslBad Diode2024-06-141-27/+31
* Add more logging functionsBad Diode2024-06-141-2/+22
* Add log_int functionBad Diode2024-06-141-15/+13
* Add initial custom logging functionsBad Diode2024-06-141-6/+36
* Starting fresh with the `badlang`Bad Diode2024-06-141-106/+32
* Add initial BASM generation for arithmetic opsBad Diode2022-04-221-0/+4
* Introduce scaffolding for basm IRBad Diode2022-04-221-0/+1
* Fix semantic analysis bug in block scoped functionsBad Diode2022-04-191-0/+1
* Add viz for symbol tablesBad Diode2022-04-191-1/+10
* Add cmd options for viz of different compile stagesBad Diode2022-04-181-5/+34
* Move semantic analysis to separate fileBad Diode2022-04-181-2/+7
* Add funcall node type and fix type resolution bugsBad Diode2022-04-111-0/+1