(t *table)
| 94 | } |
| 95 | |
| 96 | func (s *section) Emit(t *table) { |
| 97 | for _, c := range s.contents { |
| 98 | subTable := t.subTable(s.name) |
| 99 | c.Emit(subTable) |
| 100 | t.addSection(subTable) |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | func (s *section) CollectItems(items map[string]*item) { |
| 105 | for _, c := range s.contents { |
nothing calls this directly
no test coverage detected