Throw() with traceback flag within a sub-function crashes JMP
I 've encountered the following issue (minimal example below). Is this a bug or am I missing something?
(Windows 11, JMP 18.0)
The following script crashes JMP instead of simply throwing the error:
Names Default To Here(1);
f = Function( {}, { sub_f },
sub_f = Function( {},
If( 1, Throw( "thrown", 1 ) );
Return( "ok" )
);
Return( sub_f() )
);
f()
In contrast to the above, without th...