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