(args ...interface{})
| 872 | } |
| 873 | |
| 874 | func (s *printer) Print(args ...interface{}) { |
| 875 | s.enhanceArgs(args) |
| 876 | fmt.Fprint((*state)(s), args...) |
| 877 | } |
| 878 | |
| 879 | func (s *printer) Printf(format string, args ...interface{}) { |
| 880 | s.enhanceArgs(args) |
nothing calls this directly
no test coverage detected