GenericStart runs Start, but returns a LivePrinter. This is used for the interface LivePrinter. You most likely want to use Start instead of this in your program.
()
| 117 | // This is used for the interface LivePrinter. |
| 118 | // You most likely want to use Start instead of this in your program. |
| 119 | func (p *AreaPrinter) GenericStart() (*LivePrinter, error) { |
| 120 | _, _ = p.Start() |
| 121 | lp := LivePrinter(p) |
| 122 | return &lp, nil |
| 123 | } |
| 124 | |
| 125 | // GenericStop runs Stop, but returns a LivePrinter. |
| 126 | // This is used for the interface LivePrinter. |
nothing calls this directly
no test coverage detected