method

pretty_print

v1_8_7_330 - Show latest stable - Class: Range
pretty_print(q)
public

No documentation available.

# File lib/pp.rb, line 351
  def pretty_print(q)
    q.pp self.begin
    q.breakable ''
    q.text(self.exclude_end? ? '...' : '..')
    q.breakable ''
    q.pp self.end
  end