(scope memcontract.Scope, workspaceRoot string)
| 1203 | } |
| 1204 | |
| 1205 | func (s *Store) headersForCatalogScope(scope memcontract.Scope, workspaceRoot string) ([]memcontract.Header, error) { |
| 1206 | target := s |
| 1207 | if scope.Normalize() == memcontract.ScopeWorkspace { |
| 1208 | target = s.ForWorkspace(workspaceRoot) |
| 1209 | } |
| 1210 | return target.scan(scope, 0) |
| 1211 | } |
| 1212 | |
| 1213 | func (s *Store) documentsForHeaders( |
| 1214 | scope memcontract.Scope, |
no test coverage detected