class SyntaxTree::CallNode

def format_arguments(q)

nothing.
Print out the arguments to this call. If there are no arguments, then do
def format_arguments(q)
  case arguments
  when ArgParen
    q.format(arguments)
  when Args
    q.text(" ")
    q.format(arguments)
  end
end