= private = protected
new(output, maxwidth=nil, newline=nil)
Create a PrettyPrint::SingleLine object
Arguments:
output - String (or similar) to store rendered text. Needs to respond to ‘<<’
maxwidth - Argument position expected to be here for compatibility.
This argument is a noop.
newline - Argument position expected to be here for compatibility.
# File lib/prettyprint.rb, line 503 def initialize(output, maxwidth=nil, newline=nil) @output = output @first = [true] end