class Rufo::Formatter

def visit_paren(node)

def visit_paren(node)
  # ( exps )
  #
  # [:paren, exps]
  _, exps = node
  consume_token :on_lparen
  skip_space_or_newline
  if exps
    visit_exps to_ary(exps), with_lines: false
  end
  skip_space_or_newline
  consume_token :on_rparen
end