()
| 65 | } |
| 66 | |
| 67 | func (c *xmlEndElement) encode() []byte { |
| 68 | return encodeChunk(resXMLEndElementType, func(w binary.Writer) { |
| 69 | w.Uint32(c.lineNumber) |
| 70 | c.comment.encode(w) |
| 71 | }, func(w binary.Writer) { |
| 72 | c.namespace.encode(w) |
| 73 | c.name.encode(w) |
| 74 | }) |
| 75 | } |
nothing calls this directly
no test coverage detected