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

15 lines
384 B
Factor
Raw Normal View History

USING: compiler.units continuations kernel namespaces
threads.private words vocabs tools.deploy.shaker ;
2007-09-20 18:09:08 -04:00
IN: debugger
: error. ( error -- ) original-error get die-with2 ;
2007-10-09 02:07:59 -04:00
: print-error ( error -- ) error. ;
"threads" vocab [
[
"error-in-thread" "threads" lookup
[ [ drop error. ] define ] [ f "combination" set-word-prop ] bi
] with-compilation-unit
] when