factor/basis/alien/destructors/destructors.factor

29 lines
710 B
Factor
Raw Normal View History

! Copyright (C) 2009 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
2009-01-17 19:18:31 -05:00
USING: functors destructors accessors kernel parser words ;
IN: alien.destructors
2009-01-18 21:51:07 -05:00
SLOT: alien
FUNCTOR: define-destructor ( F -- )
F-destructor DEFINES ${F}-destructor
2009-01-17 19:18:31 -05:00
<F-destructor> DEFINES <${F}-destructor>
&F DEFINES &${F}
|F DEFINES |${F}
WHERE
TUPLE: F-destructor alien disposed ;
2009-01-17 19:18:31 -05:00
: <F-destructor> ( alien -- destructor ) f F-destructor boa ; inline
M: F-destructor dispose* alien>> F execute ;
2009-01-17 19:18:31 -05:00
: &F ( alien -- alien ) dup <F-destructor> execute &dispose drop ; inline
2009-01-17 19:18:31 -05:00
: |F ( alien -- alien ) dup <F-destructor> execute |dispose drop ; inline
;FUNCTOR
2009-01-17 19:18:31 -05:00
: DESTRUCTOR: scan-word define-destructor ; parsing