HasPrettyPrint (Class)

In: pp.rb
Parent: Object

Methods

new   pretty_print  

Public Class methods

[Source]

# File pp.rb, line 509
    def initialize(a)
      @a = a
    end

Public Instance methods

[Source]

# File pp.rb, line 513
    def pretty_print(q)
      q.text "<pretty_print:"
      q.pp @a
      q.text ">"
    end

[Validate]