There are probably 2-ish more CLs to get things working well enough for writing new code in rune/bootstrap/database. I think I've broken recursive destruction of all code owned by a template class which is never instantiated by calling the template class constructor. Hopefully one CL should fix that, and likely get block.rn to pass binding.
The other thing we need is a change that requires the new binder, and was a main reason for writing it. Most template classes have no template parameters, and can only ever have one class in any given Rune program (the instantiated classes can be different in different programs). We delete template classes with no instantiated classes. For those that havve exactly one (most cases), we can resolve the remaining null(Foo) non-concrete types to the concrete class nullable type. The old binder would crap out with a bizarre error message asking you to provide type hints, such as adding a child to a parent's linked list. The new binder can resolve those null references to the unique class created for that template class.
After these CLs, I think working on writing the bootstrap code should be smooth enough for anyone to jump in and contribute.
Bill