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