(a ...interface{})
| 231 | } |
| 232 | |
| 233 | func (e *Engine) println(a ...interface{}) { |
| 234 | _, _ = fmt.Fprintln(e.Out, a...) |
| 235 | } |
| 236 | |
| 237 | func (e *Engine) errorf(format string, a ...interface{}) { |
| 238 | _, _ = fmt.Fprintf(e.Err, format, a...) |
no outgoing calls
no test coverage detected