aboutsummaryrefslogtreecommitdiff
path: root/src/move.c
AgeCommit message (Collapse)Author
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-17detect leaksKimplul
2025-01-09initial ptr stuffKimplul
2025-01-09initial reference checkingKimplul
2025-01-06implement move checking furthermvcheckKimplul
+ Enough that examples still compile, but missing references etc.
2025-01-04initial move checkingKimplul
+ Missing implementations for most things, but it already highlights an oversight in my initial plan, namely that currently, a function might call multiple of its closures, meaning that a closure wouldn't be allowed to move a value. I'm debating whether to check that only one closure from a parameter list is called at a time or if I should do what Hylo does and add in some kind of 'subscript' that's like a function but has slightly different rules?