aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Add linecol info for debugging if neededBad Diode2024-06-293-34/+41
|
* Return to c11 stdBad Diode2024-06-291-5/+0
|
* Fix some compilation warnings on LinuxBad Diode2024-06-292-10/+9
|
* Add LDVAR to compilation and vmBad Diode2024-06-283-2/+55
|
* Add initial implementation of variable compilationBad Diode2024-06-285-125/+240
|
* Add bitwise operationsBad Diode2024-06-282-2/+74
|
* Add immediate arithmetic and logic op compilationBad Diode2024-06-282-20/+88
|
* Fix AND/OR and add NOT instruction compilationBad Diode2024-06-282-3/+56
|
* Add compilation of binary logic expressionsBad Diode2024-06-283-14/+101
|
* Generalize binary compilation expressionBad Diode2024-06-282-20/+61
|
* Split compiler/vm filesBad Diode2024-06-284-249/+273
|
* Add bytecode compilation for strings and booleansBad Diode2024-06-285-1743/+1246
|
* Fix some typechecking errorsBad Diode2024-06-281-1/+15
|
* More pointers and array typecheckingBad Diode2024-06-271-10/+22
|
* Add initial pointer and array access/declaration typecheckingBad Diode2024-06-272-14/+47
|
* Prepare for array/pointer typecheckingBad Diode2024-06-261-1/+0
|
* Fix a segfaultBad Diode2024-06-261-3/+3
|
* Add enum de-structuring and int matching on match exprBad Diode2024-06-261-11/+54
|
* Add err to analyzer contextBad Diode2024-06-261-2/+33
|
* Fill up main symbol table with everything we needBad Diode2024-06-261-3/+10
|
* Further consolidate symbol namesBad Diode2024-06-261-101/+122
|
* Continue consolidation with proper namingBad Diode2024-06-261-71/+71
|
* Consolidate semantic analyzer functionsBad Diode2024-06-261-392/+65
|
* Fix a bug with type resolution for inner structsBad Diode2024-06-261-1/+1
|
* Fix struct literal assignmentBad Diode2024-06-261-21/+29
|
* Fix typechecking for nested struct literalsBad Diode2024-06-262-19/+36
|
* Add better ergonomics for nested struct literalsBad Diode2024-06-261-6/+32
|
* Fix bug in struct/enum field matchingBad Diode2024-06-261-23/+35
|
* Bugfixes for struct accessorsBad Diode2024-06-251-51/+45
|
* Update inner struct symbol resolutionBad Diode2024-06-252-12/+18
|
* Add inner struct typecheckingBad Diode2024-06-251-73/+133
|
* Add compound types for anonymous struct fieldsBad Diode2024-06-252-78/+81
|
* Remove parenthesis requirement from match, while, ifBad Diode2024-06-251-12/+0
|
* Add struct literals typecheckingBad Diode2024-06-252-10/+50
|
* Change grammar for struct literalsBad Diode2024-06-241-39/+41
|
* Fix set typecheckingBad Diode2024-06-241-3/+13
|
* Add typechecking for structs and struct fieldsBad Diode2024-06-241-7/+88
|
* Add field accessor for typechecking enum fieldsBad Diode2024-06-241-5/+40
|
* Add typechecking for enum fieldsBad Diode2024-06-241-9/+51
|
* Fix typechecking issues for bitops testsBad Diode2024-06-241-7/+13
|
* Add funcall typecheckingBad Diode2024-06-241-16/+45
|
* Make sure nil return values and parameters are considered as suchBad Diode2024-06-241-2/+16
|
* Add more graph viz for function maps and typesBad Diode2024-06-241-19/+174
|
* Change typecheck returns to emit err on siteBad Diode2024-06-241-29/+16
|
* Typecheck return values in the entire function bodyBad Diode2024-06-241-8/+81
|
* Add proper parsing of return statements and functions paramsBad Diode2024-06-242-9/+33
|
* Add wip function typecheckingBad Diode2024-06-231-0/+73
|
* Add non-exhaustive typechecking for cond/match exprBad Diode2024-06-232-7/+55
|
* Add set typecheckingBad Diode2024-06-231-0/+23
|
* Add while typecheckingBad Diode2024-06-231-4/+18
|