factor/core/compiler/test/stack-trace.factor

13 lines
288 B
Factor
Raw Normal View History

2006-11-16 00:26:43 -05:00
IN: temporary
USING: errors compiler test namespaces sequences kernel-internals ;
2006-11-16 00:26:43 -05:00
: foo 3 throw 7 ;
: bar foo 4 ;
: baz bar 5 ;
\ baz compile
[ 3 ] [ [ baz ] catch ] unit-test
[ { foo bar baz } ] [
error-stack-trace get symbolic-stack-trace
[ second ] map [ ] subset
] unit-test