diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2012-02-16 05:51:49 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2012-02-16 05:51:49 -0800 |
commit | ecc500b1b343a8fc087236cc0b22a25322b6852e (patch) | |
tree | 727760b2b620677c60e823606298bc48a9cb5fe2 /unwind.h | |
parent | dbd876b7ae581822ebe1b3920a51fa32d4267480 (diff) | |
download | txr-ecc500b1b343a8fc087236cc0b22a25322b6852e.tar.gz txr-ecc500b1b343a8fc087236cc0b22a25322b6852e.tar.bz2 txr-ecc500b1b343a8fc087236cc0b22a25322b6852e.zip |
TXR Lisp gets exception handling.
* eval.c (op_catch, expand_catch_clause,
expand_catch): New static functions.
(expand): Handle catch operator.
(eval_init): Added catch operator to op_table,
and registered new functions throw, throwf and error.
* txr.1: Documented catch operator and created
stub section for throw, throwf and error.
* txr.vim: Updated.
* unwind.c (uw_throwfv, uw_errorfv): New functions.
* unwind.h (uw_throwfv, uw_errorfv): Declared.
Diffstat (limited to 'unwind.h')
-rw-r--r-- | unwind.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -95,7 +95,9 @@ val uw_block_return(val tag, val result); void uw_push_catch(uw_frame_t *, val matches); noreturn val uw_throw(val sym, val exception); noreturn val uw_throwf(val sym, val fmt, ...); +noreturn val uw_throwfv(val sym, val fmt, val args); noreturn val uw_errorf(val fmt, ...); +noreturn val uw_errorfv(val fmt, val args); val uw_register_subtype(val sub, val super); val uw_exception_subtype_p(val sub, val sup); void uw_continue(uw_frame_t *curr, uw_frame_t *target); |