()
| 29 | } |
| 30 | |
| 31 | func (e *SyntaxError) Error() string { |
| 32 | return "XML syntax error on line " + strconv.Itoa(e.Line) + ": " + e.Msg |
| 33 | } |
| 34 | |
| 35 | // A Name represents an XML name (Local) annotated |
| 36 | // with a name space identifier (Space). |
no outgoing calls
no test coverage detected