Write writes a string to the output buffer.
(s string)
| 62 | |
| 63 | // Write writes a string to the output buffer. |
| 64 | func (g *BaseGenerator) Write(s string) { |
| 65 | g.Buf.WriteString(s) |
| 66 | } |
| 67 | |
| 68 | // WriteByte writes a single byte to the output buffer. |
| 69 | func (g *BaseGenerator) WriteByte(b byte) error { |
no outgoing calls
no test coverage detected