# File lib/test/rails/pp_html_document.rb, line 39
  def pretty_print_tag(type, q)
    q.group 1, "(#{type} #{@name.inspect}", ')' do
      unless @attributes.empty? then
        q.breakable
        q.pp @attributes
      end
      unless children_without_newlines.empty? then
        q.breakable
        q.group 1, '[', ']' do
          q.seplist children_without_newlines do |v|
            q.pp v
          end
        end
      end
    end
  end