()
| 63 | } |
| 64 | |
| 65 | func (c *xmlCData) encode() []byte { |
| 66 | return encodeChunk(resXMLCDataType, func(w binary.Writer) { |
| 67 | w.Uint32(c.lineNumber) |
| 68 | c.comment.encode(w) |
| 69 | }, func(w binary.Writer) { |
| 70 | c.data.encode(w) |
| 71 | c.typedValue.encode(w) |
| 72 | }) |
| 73 | } |
nothing calls this directly
no test coverage detected