(format string, args ...interface{})
| 877 | } |
| 878 | |
| 879 | func (s *printer) Printf(format string, args ...interface{}) { |
| 880 | s.enhanceArgs(args) |
| 881 | fmt.Fprintf((*state)(s), format, args...) |
| 882 | } |
| 883 | |
| 884 | func (s *printer) enhanceArgs(args []interface{}) { |
| 885 | prevStack := s.lastStack |
nothing calls this directly
no test coverage detected