aboutsummaryrefslogtreecommitdiffstats
path: root/bytecode/src/heap.rs
AgeCommit message (Collapse)AuthorFilesLines
2022-08-07Fix an infinite loop in the garbage collector.Rose Hogenson1-15/+13
2022-07-29Fix the bytecode interpreter.Rose Hogenson1-44/+24
I'm too scared to actually try to run it right now.
2022-06-30Remove unsafe code.Rose Hogenson1-57/+48
I'm partially doing it because I'm not sure if what I had was really safe, but also it just looks much cleaner this way.
2022-03-03Start the garbage collector.Rose Hogenson1-28/+197
I don't think we finished it, but I wrote this code a while ago and I'm just trying to get it committed.
2022-01-09Initial commit.Rose Hogenson1-0/+82
Not sure if everything here will be needed eventually, but we have a working bytecode interpreter. Next I will write the linker, then the core compiler, and finish with the macro expander.