Methods
N
O
Attributes
[R] indent
[R] obj
[R] width
Class Public methods
new(sep, width, q)
# File lib/prettyprint.rb, line 278
def initialize(sep, width, q)
  @obj = sep
  @width = width
  @pp = q
  @indent = q.indent
  @group = q.current_group
  @group.breakables.push self
end
Instance Public methods
output(out, output_width)
# File lib/prettyprint.rb, line 288
def output(out, output_width)
  @group.breakables.shift
  if @group.break?
    out << @pp.newline
    out << @pp.genspace.call(@indent)
    @indent
  else
    @pp.group_queue.delete @group if @group.breakables.empty?
    out << @obj
    output_width + @width
  end
end