[Jbeta] uncaught throw.

2007-09-06 Thread Andrew Nikitin
It turns out that uncaught throw. terminates execution with no message or other indication what is going on. it would be nicer if it said something, like error message. _ Test your celebrity IQ.  Play Red Carpet Reveal and earn

Re: [Jbeta] uncaught throw.

2007-09-06 Thread Roger Hui
Subject: [Jbeta] uncaught throw. To: beta@jsoftware.com It turns out that uncaught throw. terminates execution with no message or other indication what is going on. it would be nicer if it said something, like error message

Re: [Jbeta] uncaught throw.

2007-09-06 Thread Raul Miller
On 9/6/07, Roger Hui [EMAIL PROTECTED] wrote: Instead, it causes return to immediate execution and is the specified behaviour. http://www.jsoftware.com/help/dictionary/cthrow.htm Compare: 3 :'throw.' 0 3 :'=:' 0 |syntax error | =: It seems to me that 3 :'throw.' 0 |throw Or even

Re: [Jbeta] uncaught throw.

2007-09-06 Thread Raul Miller
On 9/6/07, Roger Hui [EMAIL PROTECTED] wrote: Signalling an error would violate the specified behaviour: 3 : 'throw.' :: ('bah humbug!'_) 0 3 : '=:' :: ('bah humbug!'_) 0 bah humbug! I did not realize that, thanks for pointing it out. How about signalling a throw? (Is there some

Re: [Jbeta] uncaught throw.

2007-09-06 Thread Roger Hui
Signalling an error would violate the specified behaviour: 3 : 'throw.' :: ('bah humbug!'_) 0 3 : '=:' :: ('bah humbug!'_) 0 bah humbug! - Original Message - From: Raul Miller [EMAIL PROTECTED] Date: Thursday, September 6, 2007 12:54 Subject: Re: [Jbeta] uncaught throw

Re: [Jbeta] uncaught throw.

2007-09-06 Thread Raul Miller
On 9/6/07, Roger Hui [EMAIL PROTECTED] wrote: So there would be a new kind of signal, one for throws and one for all other signals, and the documentation and implementation that that would imply. Would all that be worth it? I do not fully understand the costs so I am not in a position to say

Re: [Jbeta] uncaught throw.

2007-09-06 Thread Roger Hui
: [Jbeta] uncaught throw. To: Beta forum beta@jsoftware.com On 9/6/07, Roger Hui [EMAIL PROTECTED] wrote: Signalling an error would violate the specified behaviour: 3 : 'throw.' :: ('bah humbug!'_) 0 3 : '=:' :: ('bah humbug!'_) 0 bah humbug! I did not realize that, thanks

[Jbeta] uncaught throw.

2007-09-06 Thread Andrew Nikitin
Date: Thu, 06 Sep 2007 10:40:18 -0700 From: Roger Hui [EMAIL PROTECTED] An uncaught throw does not terminate execution. Instead, it causes return to immediate execution and is the specified behaviour. http://www.jsoftware.com/help/dictionary/cthrow.htm Yes, I know. That is what I am