equal
deleted
inserted
replaced
61 |
61 |
62 class System_Output(text: String) extends |
62 class System_Output(text: String) extends |
63 Output(XML.Elem(Markup(Markup.SYSTEM, Nil), List(XML.Text(text)))) |
63 Output(XML.Elem(Markup(Markup.SYSTEM, Nil), List(XML.Text(text)))) |
64 |
64 |
65 class Protocol_Output(props: Properties.T, val chunks: List[Bytes]) |
65 class Protocol_Output(props: Properties.T, val chunks: List[Bytes]) |
66 extends Output(XML.Elem(Markup(Markup.PROTOCOL, props), Nil)) { |
66 extends Output(XML.elem(Markup(Markup.PROTOCOL, props))) { |
67 def chunk: Bytes = the_chunk(chunks, toString) |
67 def chunk: Bytes = the_chunk(chunks, toString) |
68 lazy val text: String = chunk.text |
68 lazy val text: String = chunk.text |
69 } |
69 } |
70 } |
70 } |
71 |
71 |