Class: Struct

Inherits:
Object show all
Defined in:
lib/pp.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#pretty_print(q) ⇒ Object

:nodoc:



404
405
406
407
408
409
410
411
412
413
414
415
416
# File 'lib/pp.rb', line 404

def pretty_print(q) # :nodoc:
  q.group(1, sprintf("#<struct %s", PP.mcall(self, Kernel, :class).name), '>') {
    q.seplist(PP.mcall(self, Struct, :members), lambda { q.text "," }) {|member|
      q.breakable
      q.text member.to_s
      q.text '='
      q.group(1) {
        q.breakable ''
        q.pp self[member]
      }
    }
  }
end

#pretty_print_cycle(q) ⇒ Object

:nodoc:



418
419
420
# File 'lib/pp.rb', line 418

def pretty_print_cycle(q) # :nodoc:
  q.text sprintf("#<struct %s:...>", PP.mcall(self, Kernel, :class).name)
end