debugString converts FilterTree to a string. Good for testing, debugging. nolint: unused
()
| 1460 | // debugString converts FilterTree to a string. Good for testing, debugging. |
| 1461 | // nolint: unused |
| 1462 | func (f *FilterTree) debugString() string { |
| 1463 | buf := bytes.NewBuffer(make([]byte, 0, 20)) |
| 1464 | f.stringHelper(buf) |
| 1465 | return buf.String() |
| 1466 | } |
| 1467 | |
| 1468 | // stringHelper does simple DFS to convert FilterTree to string. |
| 1469 | // nolint: unused |
nothing calls this directly
no test coverage detected