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

14 lines
426 B
Factor
Raw Normal View History

! Copyright (C) 2009 Slava Pestov
! See http://factorcode.org/license.txt for BSD license.
USING: combinators.private kernel ;
2009-03-18 18:01:26 -04:00
IN: combinators
: call-effect ( word effect -- ) call-effect-unsafe ;
: execute-effect ( word effect -- ) execute-effect-unsafe ;
IN: compiler.tree.propagation.call-effect
: call-effect-unsafe? ( quot effect -- ? ) 2drop t ; inline
2009-03-17 19:53:44 -04:00
: execute-effect-unsafe? ( word effect -- ? ) 2drop t ; inline