|
Current bugs and open entries in the tasks list
|
|
JavaCC
|
The generated parser sometimes shows critical behaviour,
when you have two subsequent semicolons ';;' in your source code.
The code-completion and object search may or may not work in this case, and method blocks
(the red/green/blue vertical bars on the left side of the editor) may or may not be recognized. The components
tree may or may not work, the parser state may show a green ok or a red error sign.
|
|
Code-Completion
|
Parameter signatures for method parameters, which only match a signature somewhere in their
parent chain aren't identified.
Example:
In a JFrame or a (global,nested or anonymous) child class of it :
Component label = new JLabel()
this.add( label ). -> works: CC knows, that a Component is returned.
But for
JLabel label = new JLabel();
neither
this.add( label ).
nor
this.add( (Component)label ).
will be recognized by the code completion yet.
|
Code-Completion and Object Search
|
In try{} catch( Excption e ){ this scope isn't recognized for e }
|
Code-Completion and Object Search
|
Sources for the code-completion aren't optimally updated while you program
in parser error (red) state. This way, you loose the code-completion
partially, when you never reach correct parser states while programming.
|
|
Editor crashes
|
The editor document comes into a "Stale" state and hangs.
This happens very seldomly, but of course needs to be fixed.
|
|
Editor Undo/Redo
|
is not working perfectly so far. Sometimes some spaces are not
removed properly.
|