factor/basis/tools/deploy/shaker/strip-debugger.factor

15 lines
286 B
Factor
Raw Normal View History

USING: compiler.units words vocabs kernel threads.private ;
2007-09-20 18:09:08 -04:00
IN: debugger
2008-06-11 03:58:38 -04:00
: print-error ( error -- ) die drop ;
2007-10-09 02:07:59 -04:00
2008-06-11 03:58:38 -04:00
: error. ( error -- ) die drop ;
"threads" vocab [
[
"error-in-thread" "threads" lookup
[ die 2drop ]
define
] with-compilation-unit
] when