()
| 248 | } |
| 249 | |
| 250 | func (fr *FileReader) rootReader() *FileReader { |
| 251 | if fr.parent != nil { |
| 252 | return fr.parent.rootReader() |
| 253 | } |
| 254 | return fr |
| 255 | } |
| 256 | |
| 257 | func (fr *FileReader) getBlob(ctx context.Context, br blob.Ref) (*blob.Blob, error) { |
| 258 | if root := fr.rootReader(); root != fr { |
no outgoing calls
no test coverage detected