2009-08-12 10:37:09 -04:00
|
|
|
! (c)Joe Groff bsd license
|
2009-08-12 15:59:33 -04:00
|
|
|
USING: classes.struct kernel prettyprint.backend prettyprint.custom
|
2009-08-12 10:37:09 -04:00
|
|
|
prettyprint.sections see.private sequences words ;
|
|
|
|
|
IN: classes.struct.prettyprint
|
|
|
|
|
|
|
|
|
|
M: struct-class see-class*
|
|
|
|
|
<colon \ STRUCT: pprint-word dup pprint-word
|
|
|
|
|
<block "struct-slots" word-prop [ pprint-slot ] each
|
|
|
|
|
block> pprint-; block> ;
|
|
|
|
|
|
2009-08-12 15:59:33 -04:00
|
|
|
M: struct pprint-delims
|
|
|
|
|
drop \ S{ \ } ;
|
|
|
|
|
|