method

pretty_print

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

No documentation available.

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