| 33 | } |
| 34 | |
| 35 | type showBug struct { |
| 36 | cache *cache.RepoCache |
| 37 | bug *cache.BugCache |
| 38 | childViews []string |
| 39 | mainSelectableView []string |
| 40 | sideSelectableView []string |
| 41 | selected string |
| 42 | isOnSide bool |
| 43 | scroll int |
| 44 | } |
| 45 | |
| 46 | func newShowBug(cache *cache.RepoCache) *showBug { |
| 47 | return &showBug{ |
nothing calls this directly
no outgoing calls
no test coverage detected