EndElement represents an end element token (e.g., ).
| 77 | |
| 78 | // EndElement represents an end element token (e.g., </tag>). |
| 79 | type EndElement struct { |
| 80 | Name Name |
| 81 | } |
| 82 | |
| 83 | // WriteTo writes the XML representation of the end element to the provided writer. |
| 84 | func (e *EndElement) WriteTo(w TokenWriter) error { |
nothing calls this directly
no outgoing calls
no test coverage detected