()
| 58 | } |
| 59 | |
| 60 | func (c *xmlEndNamespace) encode() []byte { |
| 61 | return encodeChunk(resXMLEndNamespaceType, func(w binary.Writer) { |
| 62 | w.Uint32(c.lineNumber) |
| 63 | c.comment.encode(w) |
| 64 | }, func(w binary.Writer) { |
| 65 | c.namespacePrefix.encode(w) |
| 66 | c.namespaceURI.encode(w) |
| 67 | }) |
| 68 | } |
nothing calls this directly
no test coverage detected