file-trees: removed debugging leftovers

db4
Sam Anklesaria 2009-05-06 21:39:13 -05:00
parent d590e87e26
commit 7c921cd073
1 changed files with 1 additions and 3 deletions

View File

@ -1,6 +1,6 @@
USING: accessors arrays delegate delegate.protocols
io.pathnames kernel locals models.arrow namespaces prettyprint sequences
ui.frp vectors tools.continuations make ;
ui.frp vectors make ;
IN: file-trees
TUPLE: walkable-vector vector father ;
@ -15,8 +15,6 @@ CONSULT: sequence-protocol tree children>> ;
: <dir-tree> ( {start,comment} -- tree ) first2 walkable-vector new vector new >>vector
[ tree boa dup children>> ] [ ".." -rot tree boa ] 2bi swap (>>father) ;
! If this was added to all grandchildren
DEFER: (tree-insert)
: tree-insert ( path tree -- ) [ unclip <dir-tree> ] [ children>> ] bi* (tree-insert) ;