show/hide this revision's text 4 added 4 characters in body

Please don't downvote this because it's ugly. I know it's ugly. But it's a way to do it in trampoline-style (no system stack overflow), and without using gotos.

push x,1 on homemade stack
while stack not empty
  length > 1
  n = pop
  if (n==1)
    x = pop
    if (type(x)==NIL || type(x)==TEXT)
      push x // this is the "return value"
    else if (type(x)==CONCAT)
      push 2 // say call doc-concat
      push doc2(x), 1 // 2nd recursion
      push doc1(x), 1 // 1st recursion
    else if (type(x)==NEST)
      push 3 // say call doc-nest
      push level(x) // push level argument to doc-nest
      push doc(x), 1 // schedule recursion
    else if (type(x)==LINE)
      push " " // return a blank
    else if (type(x)==UNION)
      push doc1(x), 1 // just recur
  else if (n==2)
    push doc-concat(pop, pop) // finish the CONCAT case
  else if (n==3)
    push doc-nest(pop, pop) // finish the NEST case
  endif
endwhile
// final value is the only value on the stack
show/hide this revision's text 3 took out some bugs

Please don't downvote this because it's ugly. I know it's ugly. But it's a way to do it in trampoline-style (no system stack overflow), and without using gotos.

push 1,x x,1 on homemade stack
while stack not empty
  n = pop
  n,x
  if (n==1)
    x = pop
    if (type(x)==NIL || type(x)==TEXT)
      push x // this is the "return value"
    else if (type(x)==CONCAT)
      push 2,doc2(x) 2 // schedule say call doc-concat
      push doc2(x), 1 // 2nd recursion
      push 1,doc1(x) doc1(x), 1 // schedule 1st recursion
    else if (type(x)==NEST)
      push 3 // say call doc-nest
      push level(x) // push level argument to doc-nest
      push 3,doc(x) doc(x), 1 // schedule recursion
    else if (type(x)==LINE)
      push " " // return a blank
    else if (type(x)==UNION)
      push 1,doc1(x) doc1(x), 1 // just recur
  else if (n==2)
    push doc-concat(pop, pop) // finish the CONCAT case
  else if (n==3)
    push doc-nest(pop, pop) // finish the NEST case
  endif
endwhile
// final value is the only value on the stack
show/hide this revision's text 2 added 110 characters in body

OK, I won't say

Please don't downvote this is pretty, but anything Java can because it's ugly. I know it's ugly. But it's a way to do it in trampoline-style (no system stack overflow), you can do:and without using gotos.

push 1,x on homemade stack
while stack not empty
  pop n,x
  if (n==1)
    if (type(x)==NIL || type(x)==TEXT)
      push x // this is the "return value"
    else if (type(x)==CONCAT)
      push 2,doc2(x) // schedule 2nd recursion
      push 1,doc1(x) // schedule 1st recursion
    else if (type(x)==NEST)
      push level(x) // push argument to doc-nest
      push 3,doc(x) // schedule recursion
    else if (type(x)==LINE)
      push " " // return a blank
    else if (type(x)==UNION)
      push 1,doc1(x) // just recur
  else if (n==2)
      push doc-concat(pop, pop) // finish the CONCAT case
  else if (n==3)
      push doc-nest(pop, pop) // finish the NEST case
  endif
endwhile
// final value is the only value on the stack
show/hide this revision's text 1