First off, I am starting Node with the --harmony flag. I set this flag in Eclipse "Preferences > Nodeclipse > node options"
The problems show in the .js files themselves.
For instance, I have a generator method in one of my controllers...
show: function* () { ... }
Nodeclipse is showing an error on all .js files with generator functions. It displays the red "x" with the message...
Syntax error on "*". Delete this token.
Since most of node modules I use have generator functions, I have like 500 errors in the project.
Anyone know how to fix this?