In Files

  • pp.rb

Parent

Methods

Range

Public Instance Methods

pretty_print(q) click to toggle source
 
               # File pp.rb, line 397
def pretty_print(q)
  q.pp self.begin
  q.breakable ''
  q.text(self.exclude_end? ? '...' : '..')
  q.breakable ''
  q.pp self.end
end