# HG changeset patch # User Michael Pavone # Date 1388805940 28800 # Node ID cc1260872322159efe7161014b46843d43e64d6e # Parent 370e03964239ffbc51caf58b621c1361af00e43d Fix printing of function/method calls in parser module diff -r 370e03964239 -r cc1260872322 modules/parser.tp --- a/modules/parser.tp Fri Jan 03 19:23:47 2014 -0800 +++ b/modules/parser.tp Fri Jan 03 19:25:40 2014 -0800 @@ -703,6 +703,10 @@ curArgs <- curArgs tail } } + while: { not: (curArgs empty?) } do: { + str <- str . " " . (curArgs value) + curArgs <- curArgs tail + } str } } @@ -742,6 +746,10 @@ curArgs <- curArgs tail } } + while: { not: (curArgs empty?) } do: { + str <- str . " " . (curArgs value) + curArgs <- curArgs tail + } str } }