()
| 303 | } |
| 304 | |
| 305 | func (w *debugWriter) removeIndent() { |
| 306 | w.indent-- |
| 307 | if w.indent < 0 { |
| 308 | panic("negative indent") |
| 309 | } |
| 310 | } |
| 311 | |
| 312 | func (w *debugWriter) String() string { |
| 313 | return w.buffer.String() |
no outgoing calls
no test coverage detected