Dump prints out information about the Input
(out io.Writer, indent int)
| 113 | |
| 114 | // Dump prints out information about the Input |
| 115 | func (i *Input) Dump(out io.Writer, indent int) { |
| 116 | |
| 117 | fmt.Fprintf(out, "%sInput semantic:%s source:%s\n", sIndent(indent), i.Semantic, i.Source) |
| 118 | } |
| 119 | |
| 120 | // |
| 121 | // Polylist |