()
| 32 | } |
| 33 | |
| 34 | func (e *SyntaxError) Error() string { |
| 35 | return "XML syntax error on line " + strconv.Itoa(e.Line) + ": " + e.Msg |
| 36 | } |
| 37 | |
| 38 | // A Name represents an XML name (Local) annotated with a name space |
| 39 | // identifier (Space). In tokens returned by Decoder.Token, the Space |
no outgoing calls