(items map[string]*item)
| 102 | } |
| 103 | |
| 104 | func (s *section) CollectItems(items map[string]*item) { |
| 105 | for _, c := range s.contents { |
| 106 | c.CollectItems(items) |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | // A line containing data in the tabular output. |
| 111 | type item struct { |
nothing calls this directly
no test coverage detected