[Proto-Scripty] Re: semi-colon complaint and other 1-7

2011-07-29 Thread kstubs
ASI? Yes, in eclipse I am also looking to ignore validating an entire sub-folder (passively digging for this option). -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To view this discussion on the web visit https://groups.goo

[Proto-Scripty] Re: semi-colon complaint and other 1-7

2011-07-29 Thread T.J. Crowder
Hi, Yes, in "whitespace only" mode the Closure compiler also deletes any semicolons that will be inserted by (the horror that is) automatic semicolon insertion[1]. Eclipse should have an option to disable the warning if the semicolon would be added by ASI. I would leave it enabled, though, so you

[Proto-Scripty] Re: semi-colon complaint and other 1-7

2011-07-28 Thread kstubs
Thanks. I started out reporting an issue on a semi-colon, but thought this was more of an obvious problem (that isn't a problem). So the semi-colon issue is still there, and I think I can resolve them, but seems they occur after things like: Here's an example from event.js function(value) { ob

[Proto-Scripty] Re: semi-colon complaint and other 1-7

2011-07-28 Thread T.J. Crowder
Your title was "semi-colon complaint" but your example was that Eclipse complains about a comma. If Eclipse is really saying it thinks that comma should be a dot, then yes, it's an Eclipse issue. The comma operator[1] is perfectly valid there. [1] http://es5.github.com/#x11.14 HTH, -- T.J. Crowd