Assertion errors are now really not catchable anymore.

[INTERPRETER]
* BUG: Assertion errors are now really not catchable anymore.
This commit is contained in:
gambas 2018-12-21 03:05:32 +01:00
parent a576b687db
commit fc41ff0b23

View file

@ -934,7 +934,11 @@ void EXEC_function_loop()
DEBUG.Main(TRUE);
if (ERROR->info.code == E_ASSERT)
{
EP = NULL;
EC = NULL;
goto __IGNORE_TRY_CATCH;
}
// Are we in a TRY?
if (EP && EC)