factor/extra/self/self.factor

12 lines
245 B
Factor
Raw Normal View History

2007-09-20 18:09:08 -04:00
USING: kernel namespaces vars ;
IN: self
VAR: self
: with-self ( quot obj -- ) [ >self call ] with-scope ;
: save-self ( quot -- ) self> >r self> clone >self call r> >self ;
! : save-self ( quot -- ) [ self> clone >self call ] with-scope ;