(s string, args ...interface{})
| 354 | } |
| 355 | |
| 356 | func (g *Generator) Printf(s string, args ...interface{}) { |
| 357 | _, _ = fmt.Fprintf(&g.buf, s, args...) |
| 358 | } |
| 359 | |
| 360 | func (g *Generator) WriteFile(name string) error { |
| 361 | src, err := g.Format() |
no outgoing calls
no test coverage detected