is it possible to inspect the javascript stack trace when node.js goes in Segmentation fault?
The current situation is the following: I am running a script which has a few nested async.eachSeries, which caused for some weird reason a RangeError: Maximum call stack size exceeded. Hence, I have increased the stack size via node --stack-size=1000000 and I am left with the Segmentation fault.
Here is the source code of the script: http://nopaste.info/ca0c118591.html
Update
I also tried segfault-handler, but for some inscrutable reason it is not catching my segfault.