combinators: call( now throws an error if a quotation that was declared as never returning actually returns
parent
c3f8f5067e
commit
e0196da1c8
|
@ -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 )
|
||||
{
|
||||
|
|
|
@ -30,11 +30,12 @@ SLOT: out
|
|||
: call-effect ( quot effect -- )
|
||||
! Don't use fancy combinators here, since this word always
|
||||
! runs unoptimized
|
||||
[ datastack ] 2dip
|
||||
2dup [
|
||||
[ dip ] dip
|
||||
[ [ datastack ] dip dip ] dip
|
||||
dup terminated?>> [ 2drop f ] [
|
||||
dup in>> length swap out>> length
|
||||
check-datastack
|
||||
] if
|
||||
] 2dip rot
|
||||
[ 2drop ] [ wrong-values ] if ;
|
||||
|
||||
|
|
Loading…
Reference in New Issue