Range (Class)

In: pp.rb
Parent: Object

Methods

Public Instance methods

[Source]

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

[Validate]