static OutputStream printOutputStreamWithIndent(S indent) { final new UTF8Processor utf8; final LineBuffer buf = lineBuffer_printWithIndent(indent); ret new OutputStream { public void write(int b) { buf.append(utf8.processByte((byte) b)); } }; }