Merge branch 'master' of factorcode.org:/git/factor

release
Joe Groff 2010-04-06 13:56:52 -07:00
commit e67a48d720
2 changed files with 24 additions and 4 deletions

View File

@ -35,6 +35,24 @@ IN: combinators.tests
[ 7 ] [ 1 3 [ 2 * ] [ + ] compose compile-call(-test-1 ] unit-test
[ 4 ] [ 1 3 [ { + } [ ] like call ] compile-call(-test-1 ] unit-test
[ [ ] call( -- * ) ] must-fail
: compile-call(-test-2 ( -- ) [ ] call( -- * ) ;
[ compile-call(-test-2 ] [ wrong-values? ] must-fail-with
: compile-call(-test-3 ( quot -- ) call( -- * ) ;
[ [ ] compile-call(-test-3 ] [ wrong-values? ] must-fail-with
: compile-execute(-test-3 ( a -- ) \ . execute( value -- * ) ;
[ 10 compile-execute(-test-3 ] [ wrong-values? ] must-fail-with
: compile-execute(-test-4 ( a word -- ) execute( value -- * ) ;
[ 10 \ . compile-execute(-test-4 ] [ wrong-values? ] must-fail-with
! Compiled
: cond-test-1 ( obj -- str )
{

View File

@ -26,15 +26,17 @@ ERROR: wrong-values quot call-site ;
! We can't USE: effects here so we forward reference slots instead
SLOT: in
SLOT: out
SLOT: terminated?
: call-effect ( quot effect -- )
! Don't use fancy combinators here, since this word always
! runs unoptimized
[ datastack ] 2dip
2dup [
[ dip ] dip
dup in>> length swap out>> length
check-datastack
[ [ datastack ] dip dip ] dip
dup terminated?>> [ 2drop f ] [
dup in>> length swap out>> length
check-datastack
] if
] 2dip rot
[ 2drop ] [ wrong-values ] if ;