| 35 | } |
| 36 | |
| 37 | type bugTable struct { |
| 38 | repo *cache.RepoCache |
| 39 | queryStr string |
| 40 | query *query.Query |
| 41 | allIds []entity.Id |
| 42 | excerpts []*cache.BugExcerpt |
| 43 | pageCursor int |
| 44 | selectCursor int |
| 45 | } |
| 46 | |
| 47 | func newBugTable(c *cache.RepoCache) *bugTable { |
| 48 | q, err := query.Parse(defaultQuery) |
nothing calls this directly
no outgoing calls
no test coverage detected