summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-01-01Add support for calling functions.HEADmasterJesse Morgan
So far this only works if the function is defined before it is called. Otherwise, it fails in confusing ways. The problem is that I currently assume identifiers are always variables, but functions are currently never variables. Functions are currently treated as special case when they are declared. I'll need to rethink that...
2023-12-31Add InvokeGenerator implJesse Morgan
2023-12-31Add disassembler output to debugJesse Morgan
2023-12-31Statically compile simple expressionsJesse Morgan
2023-12-31Implement Invoke, Yield, and Return opsJesse Morgan
Javascript functions can now return values.
2023-12-31Add tokio dependencyJesse Morgan
2023-12-31Move Compiler into new moduleJesse Morgan
2023-12-29Checkpoint: naive JS compilationJesse Morgan
2023-12-28CheckpointJesse Morgan