method

pretty_print

ruby latest stable - Class: RDoc::Attr
pretty_print(q)
public

No documentation available.

# File lib/rdoc/attr.rb, line 151
  def pretty_print q # :nodoc:
    q.group 2, "[#{self.class.name} #{full_name} #{rw} #{visibility}", "]" do
      unless comment.empty? then
        q.breakable
        q.text "comment:"
        q.breakable
        q.pp @comment
      end
    end
  end