aboutsummaryrefslogtreecommitdiff
path: root/src/lower.c
AgeCommit message (Collapse)Author
14 daysuse maps in scopeKimplul
14 daysimprove printingKimplul
2025-03-18use generic contsKimplul
2025-03-18add move queuesKimplul
+ Returning blocks don't want to show moves for subsequent statements, but do want to show them for possible closure callers above.
2025-03-17fix some total movesKimplul
2025-03-17improve codegenKimplul
+ Probably kind of silly since I'll probably not use the C++ backend in the future but at least it's a bit easier to read what's going on + Total move checking doesn't seem to work in if statements, will have to fix at some point
2025-03-17detect leaksKimplul
2025-01-09initial ptr stuffKimplul
2025-01-09initial reference checkingKimplul
2024-12-06add trailing closuresKimplul
+ Useful for guard statements, not entirely sure about the final syntax but at least they're possible
2024-12-06formattingKimplul
2024-12-06add types to parserKimplul
+ No actual type checking is implemented as of yet, but with references and pointers I should be able to start playing around with checking move semantics and so on + Might at some point also look into type propagation for let, annoying to have to specify the same thing twice.
2024-12-04implement expression handling furtherKimplul
+ Add some notes about returning functions that I started thinking about as a result of the fib example
2024-12-03initial commitKimplul
+ Lots of code copied from ek, so didn't have to start from scratch, but might mean there are some quirks here and there that made sense in ek but not necessarily here.