[Source]
# File prettyprint.rb, line 262 def initialize @objs = [] @width = 0 end
# File prettyprint.rb, line 273 def add(obj, width) @objs << obj @width += width end
# File prettyprint.rb, line 268 def output(out, output_width) @objs.each {|obj| out << obj} output_width + @width end
[Validate]