Actions
Bug #961
openOn Error Goto and On Error Proc are NOT working.
Start date:
12/03/2022
Due date:
% Done:
0%
Estimated time:
Affected version:
Description
The On Error Goto or On Error Proc statements do not produce an error in and of themselves, however, if an error occurs, instead of going to the error handler, AOZ returns an Internal Error
Example:
On Error Goto ErrorHandler
Print ACos(1.1)
Print ACos(-1.1)
Print ASin(2)
Print ASin(-2)
Print 12/0
End
ErrorHandler:
Print Errn,Err$
NOTE: If you comment the On Error statement, you'll see the math errors.
NOTE2: If you keep the On Error statement, and comment the errant math functions instead, the program works.
Actions