Merge branch 'master' of git://factorcode.org/git/factor
commit
7ff689b2f5
|
@ -1,5 +1,8 @@
|
||||||
|
|
||||||
USING: kernel multiline parser sequences splitting grouping help.markup ;
|
USING: arrays assocs compiler.units
|
||||||
|
grouping help help.markup help.topics kernel lexer multiline
|
||||||
|
namespaces parser sequences splitting words
|
||||||
|
easy-help.expand-markup ;
|
||||||
|
|
||||||
IN: easy-help
|
IN: easy-help
|
||||||
|
|
||||||
|
@ -52,10 +55,57 @@ IN: easy-help
|
||||||
: Values:
|
: Values:
|
||||||
|
|
||||||
".." parse-multiline-string
|
".." parse-multiline-string
|
||||||
" \n" split
|
string-lines
|
||||||
[ "" = not ] filter
|
1 tail
|
||||||
2 group
|
[ dup " " head? [ 4 tail ] [ ] if ] map
|
||||||
|
[ " " split1 [ " " first = ] trim-left 2array ] map
|
||||||
\ $values prefix
|
\ $values prefix
|
||||||
parsed
|
parsed
|
||||||
|
|
||||||
; parsing
|
; parsing
|
||||||
|
|
||||||
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
: Word:
|
||||||
|
|
||||||
|
scan current-vocab create dup old-definitions get
|
||||||
|
[ delete-at ] with each dup set-word
|
||||||
|
|
||||||
|
bootstrap-word dup set-word
|
||||||
|
dup >link save-location
|
||||||
|
\ ; parse-until >array swap set-word-help ; parsing
|
||||||
|
|
||||||
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
: Contract:
|
||||||
|
|
||||||
|
".." parse-multiline-string
|
||||||
|
string-lines
|
||||||
|
1 tail
|
||||||
|
[ dup " " head? [ 4 tail ] [ ] if ] map
|
||||||
|
[ expand-markup ] map
|
||||||
|
concat
|
||||||
|
[ dup "" = [ drop { $nl } ] [ ] if ] map
|
||||||
|
\ $contract prefix
|
||||||
|
parsed
|
||||||
|
|
||||||
|
; parsing
|
||||||
|
|
||||||
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
: Notes:
|
||||||
|
|
||||||
|
".." parse-multiline-string
|
||||||
|
string-lines
|
||||||
|
1 tail
|
||||||
|
[ dup " " head? [ 4 tail ] [ ] if ] map
|
||||||
|
[ expand-markup ] map
|
||||||
|
concat
|
||||||
|
[ dup "" = [ drop { $nl } ] [ ] if ] map
|
||||||
|
\ $notes prefix
|
||||||
|
parsed
|
||||||
|
|
||||||
|
; parsing
|
||||||
|
|
||||||
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
|
||||||
|
USING: accessors arrays kernel lexer locals math namespaces parser
|
||||||
|
sequences splitting ;
|
||||||
|
|
||||||
|
IN: easy-help.expand-markup
|
||||||
|
|
||||||
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
: scan-one-array ( string -- array rest )
|
||||||
|
string-lines
|
||||||
|
lexer-factory get call
|
||||||
|
[
|
||||||
|
[
|
||||||
|
\ } parse-until >array
|
||||||
|
lexer get line-text>>
|
||||||
|
lexer get column>> tail
|
||||||
|
]
|
||||||
|
with-lexer
|
||||||
|
]
|
||||||
|
with-scope ;
|
||||||
|
|
||||||
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
: contains-markup? ( string -- ? ) "{ $" swap subseq? ;
|
||||||
|
|
||||||
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
:: expand-markup ( LINE -- lines )
|
||||||
|
|
||||||
|
LINE contains-markup?
|
||||||
|
[
|
||||||
|
|
||||||
|
[let | N [ "{ $" LINE start ] |
|
||||||
|
|
||||||
|
LINE N head
|
||||||
|
|
||||||
|
LINE N 2 + tail scan-one-array dup " " head? [ 1 tail ] [ ] if
|
||||||
|
|
||||||
|
[ 2array ] dip
|
||||||
|
|
||||||
|
expand-markup
|
||||||
|
|
||||||
|
append ]
|
||||||
|
|
||||||
|
]
|
||||||
|
[ LINE 1array ]
|
||||||
|
if ;
|
|
@ -8,11 +8,13 @@ IN: size-of
|
||||||
|
|
||||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
DEFER: size-of
|
Word: size-of
|
||||||
|
|
||||||
HELP: size-of
|
Values:
|
||||||
|
|
||||||
Values: HEADERS sequence TYPE string n integer ..
|
HEADERS sequence : List of header files
|
||||||
|
TYPE string : A C type
|
||||||
|
n integer : Size in number of bytes ..
|
||||||
|
|
||||||
Description:
|
Description:
|
||||||
|
|
||||||
|
@ -57,4 +59,3 @@ Example:
|
||||||
|
|
||||||
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue