(format string, args ...any)
| 506 | } |
| 507 | |
| 508 | func (p *printer) printf(format string, args ...any) { |
| 509 | if p.err == nil { |
| 510 | _, p.err = fmt.Fprintf(p.w, format, args...) |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | func (p *printer) print(format string) { |
| 515 | if p.err == nil { |
no outgoing calls
no test coverage detected