1Java Debug Wire Protocol support 2 3This is a reasonably complete implementation, but only messages that are 4actually generated by debuggers have been implemented. The reasoning 5behind this is that it's better to leave a call unimplemented than have 6something that appears implemented but has never been tested. 7 8An attempt has been made to keep the implementation distinct from the VM, 9with Debugger.c acting as a sort of portability layer, so that the code 10might be useful in other projects. Once you get multiple simultaneous 11events and debugger requests with thread suspension bouncing around, 12though, it's difficult to keep things "generic". 13