diff --git a/extra/optimizer/debugger/debugger.factor b/extra/optimizer/debugger/debugger.factor index 729281e81b..ebf14417c0 100755 --- a/extra/optimizer/debugger/debugger.factor +++ b/extra/optimizer/debugger/debugger.factor @@ -95,14 +95,18 @@ M: #dispatch node>quot node-children swap [ dataflow>quot ] curry map , \ dispatch , ; -M: #return node>quot - dup node-param unparse "#return " swap append comment, ; - M: #>r node>quot nip node-in-d length \ >r % ; M: #r> node>quot nip node-out-d length \ r> % ; -M: object node>quot dup class word-name comment, ; +M: object node>quot + [ + dup class word-name % + " " % + dup node-param unparse % + " " % + dup effect-str % + ] "" make comment, ; : (dataflow>quot) ( ? node -- ) dup [