factor/library/help/word-help.factor

31 lines
684 B
Factor
Raw Normal View History

! Copyright (C) 2005, 2006 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license.
2005-12-30 03:57:38 -05:00
IN: help
2006-03-27 01:24:18 -05:00
USING: arrays generic kernel namespaces prettyprint sequences
words ;
2005-12-30 03:57:38 -05:00
2006-03-27 01:24:18 -05:00
M: word article-title
[
"The " % dup word-name % class? " class" " word" ? %
] "" make ;
2006-01-06 02:04:42 -05:00
M: word article-name word-name ;
2005-12-30 03:57:38 -05:00
: word-article ( word -- article ) "help" word-prop ;
2005-12-30 03:57:38 -05:00
: word-help ( word -- )
dup word-article [
2005-12-30 03:57:38 -05:00
% drop
] [
2006-01-02 00:51:03 -05:00
"predicating" word-prop [
2005-12-30 03:57:38 -05:00
\ $predicate swap 2array ,
2006-01-02 00:51:03 -05:00
] when*
2005-12-30 03:57:38 -05:00
] if* ;
M: word article-content
[
\ $synopsis over 2array ,
dup word-help
\ $definition swap 2array ,
] { } make ;