diff --git a/basis/hashtables/wrapped/prettyprint/prettyprint.factor b/basis/hashtables/wrapped/prettyprint/prettyprint.factor new file mode 100644 index 0000000000..038a53e140 --- /dev/null +++ b/basis/hashtables/wrapped/prettyprint/prettyprint.factor @@ -0,0 +1,16 @@ +! Copyright (C) 2011 John Benediktsson +! See http://factorcode.org/license.txt for BSD license + +USING: assocs continuations hashtables.wrapped kernel +namespaces prettyprint.backend prettyprint.config +prettyprint.custom ; + +IN: hashtables.wrapped.prettyprint + +M: wrapped-hashtable >pprint-sequence >alist ; + +M: wrapped-hashtable pprint* + nesting-limit inc + [ pprint-object ] [ nesting-limit dec ] [ ] cleanup ; + +