2008-03-08 13:01:48 -05:00
|
|
|
! Copyright (C) 2008 Doug Coleman.
|
2008-03-05 22:35:08 -05:00
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-03-08 13:01:48 -05:00
|
|
|
USING: classes.predicate kernel namespaces parser quotations
|
|
|
|
sequences words ;
|
2008-03-05 22:35:08 -05:00
|
|
|
IN: singleton
|
|
|
|
|
2008-03-08 13:01:48 -05:00
|
|
|
: define-singleton ( token -- )
|
2008-03-11 04:36:09 -04:00
|
|
|
\ word swap create-class-in
|
2008-03-08 13:01:48 -05:00
|
|
|
dup [ eq? ] curry define-predicate-class ;
|
2008-03-07 21:02:58 -05:00
|
|
|
|
2008-03-05 22:35:08 -05:00
|
|
|
: SINGLETON:
|
2008-03-08 13:01:48 -05:00
|
|
|
scan define-singleton ; parsing
|
|
|
|
|
|
|
|
: SINGLETONS:
|
|
|
|
";" parse-tokens [ define-singleton ] each ; parsing
|