(start xml.StartElement, accessor *Accessor)
| 234 | } |
| 235 | |
| 236 | func (d *Decoder) decParam(start xml.StartElement, accessor *Accessor) error { |
| 237 | |
| 238 | p := Param{} |
| 239 | p.Name = findAttrib(start, "name").Value |
| 240 | p.Type = findAttrib(start, "type").Value |
| 241 | accessor.Params = append(accessor.Params, p) |
| 242 | return nil |
| 243 | } |
| 244 | |
| 245 | func (d *Decoder) decNextChild(parent xml.StartElement) (xml.StartElement, []byte, error) { |
| 246 |
no test coverage detected