(v ...string)
| 84 | } |
| 85 | |
| 86 | func (g *GenGo) P(v ...string) { |
| 87 | for _, x := range v { |
| 88 | fmt.Fprint(&g.code, x) |
| 89 | } |
| 90 | fmt.Fprintln(&g.code) |
| 91 | } |
| 92 | |
| 93 | func (g *GenGo) W(v ...string) { |
| 94 | for _, x := range v { |
no outgoing calls
no test coverage detected