Tagged Questions
1
vote
0answers
139 views
when using eclipse webtools JSDT, the validator doesn't recognise the “get someval() { return this.someVal }” syntax
When using JSDT to edit a javascript source file using this syntax for getter and setter like so;
get action() { return this.aAction },
set action(action) { this.aAction = action },
it fails ...
1
vote
3answers
655 views
How to indicate public/protected/private members in JSDT outline view?
Javascript Developer Tools (JSDT) for Eclipse provides a nice outline view of Javascript classes, with a little symbol next to them to indicate visibility.
Looking at ...