2007-12-26 20:54:38 -05:00
|
|
|
! Copyright (C) 2007 Slava Pestov.
|
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2007-11-15 17:29:00 -05:00
|
|
|
USING: effects sequences kernel arrays quotations inference
|
2007-12-26 20:54:38 -05:00
|
|
|
tools.test words ;
|
2007-11-15 17:29:00 -05:00
|
|
|
IN: tools.test.inference
|
|
|
|
|
|
|
|
|
|
: short-effect
|
|
|
|
|
dup effect-in length swap effect-out length 2array ;
|
|
|
|
|
|
|
|
|
|
: unit-test-effect ( effect quot -- )
|
|
|
|
|
>r 1quotation r> [ infer short-effect ] curry unit-test ;
|
2007-12-26 20:54:38 -05:00
|
|
|
|
|
|
|
|
: must-infer ( word -- )
|
|
|
|
|
dup "declared-effect" word-prop
|
|
|
|
|
dup effect-in length swap effect-out length 2array
|
|
|
|
|
swap 1quotation unit-test-effect ;
|