Copy creates a new copy of Comment.
()
| 89 | |
| 90 | // Copy creates a new copy of Comment. |
| 91 | func (c Comment) Copy() Comment { return Comment(bytes.Clone(c)) } |
| 92 | |
| 93 | // A ProcInst represents an XML processing instruction of the form <?target inst?> |
| 94 | type ProcInst struct { |
no test coverage detected