Felix Klock <pfr6rs_at_pnkfx.org> writes:
> Are we talking about:
> 1.) The encouragement of implementations to raise &syntax exceptions
> when encountering subexpressions with violations
> 2.) The permission of implementations to raise &warning exceptions
> when encountering subexpressions with "inevitable" violations
1., to my mind, is bogus: We should require an exception with
condition type &syntax to be raised upon a syntax violation, and
prohibit an exception with condition type &syntax to be raised in
other circumstances.
2. is OK, but the relevant issue is not with raising the exception,
but rather with handling it. There are probably two separate strands
here: Expansion by `eval', and expansion through compiling/running a
script and importing a library. They have in common that exceptions
with serious condition types should prevent the expression or program
from being run, and that they should proceed upon all others. I think
we should permit the default handler in place when expanding through
compiling/running a script and importing a library to print out a
message when encountering an exception with condition type &warning,
before proceeding.
> Thus, to clarify my understanding of Mike's position, I ask whether
> code like the following is specified as returning 1, 2, either, or ...?
>
> (call-with-current-continuation
> (lambda (exit)
> (with-exception-handler (lambda (x) (exit 2))
> (with-exception-handler (lambda (x) (exit 1))
> (lambda () (cons 1 2 3))))))))
>
> That is, a JIT compiler might wait until it was evaluating the
> innermost (with-exception-handler ...) to actually raise a &warning
> about the (cons 1 2 3). Such systems might then return 2 as their
> result, right?
No. The &warning needs to be ignored. 1 should be returned always.
--
Cheers =8-} Mike
Friede, V?lkerverst?ndigung und ?berhaupt blabla
Received on Wed Nov 01 2006 - 03:23:22 UTC