1 ! Copyright (C) 2008 Doug Coleman.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: quotations effects accessors sequences words kernel ;
6 PREDICATE: alias < word "alias" word-prop ;
8 : define-alias ( new old -- )
9 [ [ 1quotation ] [ stack-effect ] bi define-inline ]
10 [ drop t "alias" set-word-prop ] 2bi ;
13 [ call-next-method ] [ f "alias" set-word-prop ] bi ;
16 def>> first stack-effect ;