(t *table)
| 237 | } |
| 238 | |
| 239 | func (i *indentedItem) Emit(t *table) { |
| 240 | subTable := t.indented("", i.depth) |
| 241 | i.tableContents.Emit(subTable) |
| 242 | t.addSection(subTable) |
| 243 | } |
| 244 | |
| 245 | type Threshold float64 |
| 246 |
nothing calls this directly
no test coverage detected