Re: [nodejs] How to debug "Uncaught Exception : [RangeError: Maximum call stack size exceeded]"

2013-07-11 Thread Ashima Athri
Thanks for the information. I ended up using node-inspector with the "pause on uncaught exceptions" switch (the pause button on the bottom left). - Ashima On Wednesday, 10 July 2013 05:42:58 UTC-4, Ben Noordhuis wrote: > > On Wed, Jul 10, 2013 at 12:17 AM, Ashima Athri > > > wrote: > > Hi,

Re: [nodejs] How to debug "Uncaught Exception : [RangeError: Maximum call stack size exceeded]"

2013-07-10 Thread Ben Noordhuis
On Wed, Jul 10, 2013 at 12:17 AM, Ashima Athri wrote: > Hi, > > I have code that ran fine with version <= 0.9.11 but encounters this error > in versions greater than this. I understand that the cause of the error is > probably infinite recursion, but do not know how to trace it, as the stack > tra

[nodejs] How to debug "Uncaught Exception : [RangeError: Maximum call stack size exceeded]"

2013-07-10 Thread Ashima Athri
Hi, I have code that ran fine with version <= 0.9.11 but encounters this error in versions greater than this. I understand that the cause of the error is probably infinite recursion, but do not know how to trace it, as the stack trace is undefined. This question