| 21 | } |
| 22 | |
| 23 | type labelSelect struct { |
| 24 | cache *cache.RepoCache |
| 25 | bug *cache.BugCache |
| 26 | labels []common.Label |
| 27 | labelSelect []bool |
| 28 | selected int |
| 29 | scroll int |
| 30 | childViews []string |
| 31 | } |
| 32 | |
| 33 | func newLabelSelect() *labelSelect { |
| 34 | return &labelSelect{} |
nothing calls this directly
no outgoing calls
no test coverage detected