aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.c
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Add initial implementation of AST vizualizationBad Diode2022-04-081-3/+3
|
* Add TODO.md file to keep track of open tasksBad Diode2022-04-061-19/+0
|
* Add type signature to def statementsBad Diode2022-03-311-0/+1
| | | | Currently mandatory, may be optional once we have type inference.
* Add boilerplate for parserBad Diode2022-02-121-4/+7
|
* Make keywords a static array for ease of lexBad Diode2022-02-121-3/+0
|
* Add new syntax to lexer and prepare refactorBad Diode2022-02-011-29/+27
|
* Start refactoring of compiler to stack-irBad Diode2021-12-221-2/+4
|
* Add initial local definition/accessBad Diode2021-11-101-1/+1
|
* Change Environment to store locals in arrayBad Diode2021-11-101-2/+2
| | | | This will help directly translate the locals to assembly.
* Add x86_64 compilation for arithmetic expressionsv0.10Bad Diode2021-11-011-2/+4
|
* Change permissions for text files to 644Bad Diode2021-10-311-0/+0
|
* Add parsing of lambda expressionBad Diode2021-10-301-2/+2
|
* Revert "Deduplicate string/symbols text for fast equality checks"Bad Diode2021-10-291-3/+3
| | | | This reverts commit 95709acb7f166b21f562ef3fcf8ba7cb5890d28a.
* Deduplicate string/symbols text for fast equality checksBad Diode2021-10-291-3/+3
|
* Add parser for tokens->ast conversionBad Diode2021-10-291-5/+18
|
* Prepare third compiler implementationBad Diode2021-10-291-0/+137