(w io.Writer)
| 28 | rows [][]string |
| 29 | } |
| 30 | |
| 31 | func newTable(w io.Writer) *table { |
| 32 | return &table{ |
| 33 | w: w, |
| 34 | columnWidths: map[int]int{}, |
| 35 | rows: [][]string{}, |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | func (t *table) addRow(row []string) { |
no outgoing calls
no test coverage detected