class RDoc::Parser::Ruby

def parse_rescue

def parse_rescue
  skip_tkspace_without_nl
  while tk = get_tk
    case tk[:kind]
    when :on_nl, :on_semicolon, :on_comment then
      break
    when :on_comma then
      skip_tkspace_without_nl
      get_tk if :on_nl == peek_tk[:kind]
    end
    skip_tkspace_without_nl
  end
end