Auto-Complete Suggestions in Source Code Editor
- by Jim
Hello,
Most IDEs (Eclipse, Netbeans, Intelij) provide contextually smart suggestions about the current statement you're writing. We would like to do the same thing (In Java for Java).
We considered tokenizing the input and building our own abstract syntax trees, but quickly realized that could be a month long project in and of its self. We also…