We finally have instruction generation! I am in the process of wrapping up unit tests for the tree validation and bug fixes, but we have it successfully compiling and executing fizzbuzz and calling Java methods to report the results.

Featured is a window I have been using to debug the compiler and interpreter, where we can compile code on the fly and observe the parse tree that we end up with (and copy for viewing in a text editor). Once compiled, we can see the instructions that got generated, and step through the instructions to watch the flow, as well as current state of the stack and registers.

I also started documenting the language and features on the GitHub wiki. Once I wrap up as many unit tests as I think are reasonable, I will move on to the orchestration of loading and running multiple scripts. I also plan on adding in the ability to halt execution of a script until another thread gives the okay to resume, to support the dialogue system.