I have a parser with non-trivial actions (==>) on several nodes, and I wonder how I can debug problems in the action code, given that ==> absorbs all exceptions, even debugger breakpoints. Is there a way to let actions raise exceptions rather than cause parser failures?
I have a parser with non-trivial actions (
==>
) on several nodes, and I wonder how I can debug problems in the action code, given that==>
absorbs all exceptions, even debugger breakpoints. Is there a way to let actions raise exceptions rather than cause parser failures?