(s xml.StartElement, name string)
| 288 | } |
| 289 | |
| 290 | func findAttrib(s xml.StartElement, name string) xml.Attr { |
| 291 | |
| 292 | for _, attr := range s.Attr { |
| 293 | if attr.Name.Local == name { |
| 294 | return attr |
| 295 | } |
| 296 | } |
| 297 | return xml.Attr{} |
| 298 | } |
| 299 | |
| 300 | const tokenSep string = " \r\n\t" |
| 301 |
no outgoing calls
no test coverage detected