Elliott Hughes | 872d4ec | 2011-10-21 17:07:15 -0700 | [diff] [blame] | 1 | Java Debug Wire Protocol support |
| 2 | |
| 3 | This is a reasonably complete implementation, but only messages that are |
| 4 | actually generated by debuggers have been implemented. The reasoning |
| 5 | behind this is that it's better to leave a call unimplemented than have |
| 6 | something that appears implemented but has never been tested. |
| 7 | |
| 8 | An attempt has been made to keep the JDWP implementation distinct from the |
| 9 | runtime, so that the code might be useful in other projects. Once you get |
| 10 | multiple simultaneous events and debugger requests with thread suspension |
| 11 | bouncing around, though, it's difficult to keep things "generic". |