| 42 | type SortFunc func(pkgA, pkgB abstractResult) int |
| 43 | |
| 44 | type SourceQueryBuilder struct { |
| 45 | results []abstractResult |
| 46 | sortBy string |
| 47 | searchBy string |
| 48 | targetMode parser.TargetMode |
| 49 | aurQueryMap map[string]*aur.Pkg |
| 50 | repoQueryMap map[string]alpm.Package |
| 51 | bottomUp bool |
| 52 | singleLineResults bool |
| 53 | separateSources bool |
| 54 | |
| 55 | aurClient aur.QueryClient |
| 56 | logger *text.Logger |
| 57 | lua *settingslua.Engine |
| 58 | } |
| 59 | |
| 60 | func NewSourceQueryBuilder( |
| 61 | aurClient aur.QueryClient, |
nothing calls this directly
no outgoing calls
no test coverage detected