2011-09-27 11:40:02 -04:00
|
|
|
! Copyright (C) 2011 John Benediktsson
|
|
|
|
! See http://factorcode.org/license.txt for BSD license
|
|
|
|
|
2011-11-30 17:28:40 -05:00
|
|
|
USING: assocs continuations hashtables.wrapped namespaces
|
|
|
|
prettyprint.config prettyprint.custom ;
|
2011-09-27 11:40:02 -04:00
|
|
|
|
|
|
|
IN: hashtables.wrapped.prettyprint
|
|
|
|
|
|
|
|
M: wrapped-hashtable >pprint-sequence >alist ;
|
|
|
|
|
|
|
|
M: wrapped-hashtable pprint*
|
|
|
|
nesting-limit inc
|
2019-04-22 10:49:05 -04:00
|
|
|
[ pprint-object ] [ nesting-limit dec ] finally ;
|