Dump prints out information about the Param
(out io.Writer, indent int)
| 106 | |
| 107 | // Dump prints out information about the Param |
| 108 | func (p *Param) Dump(out io.Writer, indent int) { |
| 109 | |
| 110 | fmt.Fprintf(out, "%sParam name:%s type:%s\n", sIndent(indent), p.Name, p.Type) |
| 111 | } |
| 112 | |
| 113 | // decSource decodes the source from the specified mesh |
| 114 | func (d *Decoder) decSource(start xml.StartElement) (*Source, error) { |