Added option for TryCatches to not capture the message object on
authorchristian.plesner.hansen@gmail.com <christian.plesner.hansen@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 10 Sep 2008 14:54:15 +0000 (14:54 +0000)
committerchristian.plesner.hansen@gmail.com <christian.plesner.hansen@gmail.com@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Wed, 10 Sep 2008 14:54:15 +0000 (14:54 +0000)
commit4d95ac7339c820dd1f1f07b22282c7e45ffa9753
tree3c872529578e9513bd362b67917e8780177305d5
parentdfe272090367992f9068940a7ef6bf04968974f2
Added option for TryCatches to not capture the message object on
exceptions.

It turned out that the stack overflow fix from before had disabled
message storing in another test.  Previously, stack overflows would
actually cause a message object to start being created but cause
another exception which would not be reported and that's what stopped
the infinite regress.  This change resores that behavior.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@259 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
include/v8.h
src/api.cc
src/execution.cc
src/top.cc
test/cctest/test-api.cc