Little bug with continue keyword

2014-02-27 Thread Danillo Paiva
Hi, While creating my HTML5+JavaScript+CSS WebApp with Cordova 3.4.0 I found a wierd, but making sense, bug. When you have a JavaScript code like: var obj = { 'continue': function(){ /* Stuff... */ } }; // It crashes in the simulators. obj.continue(); // Works fine.

Re: Little bug with continue keyword

2014-02-27 Thread Jesse
Create an account, and file an issue. Include what simulators you are using, and the full code to reproduce the issue, ie : var obj = { 'continue': function(){ alert(continuing...); } }; obj.continue(); @purplecabbage risingj.com On Thu, Feb 27, 2014 at 3:10 PM, Danillo Paiva

Re: Little bug with continue keyword

2014-02-27 Thread Josh Soref
Jesse wrote: Create an account, and file an issue. Include what simulators you are using, and the full code to reproduce the issue, ie : var obj = { 'continue': function(){ alert(continuing...); } }; obj.continue();