()
| 408 | } |
| 409 | |
| 410 | func (e *encoder) nilv() { |
| 411 | e.emitScalar("null", "", "", yaml_PLAIN_SCALAR_STYLE, nil, nil, nil, nil) |
| 412 | } |
| 413 | |
| 414 | func (e *encoder) emitScalar(value, anchor, tag string, style yaml_scalar_style_t, head, line, foot, tail []byte) { |
| 415 | // TODO Kill this function. Replace all initialize calls by their underlining Go literals. |
no test coverage detected