[chore] Rename file to legacy_reporters.go (#2406)

This commit is contained in:
Miccah 2024-02-09 18:17:46 -08:00 committed by GitHub
parent 9642d4c8fd
commit 8f01326468
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,6 +23,9 @@ func (ChanReporter) ChunkErr(ctx context.Context, err error) error {
var _ UnitReporter = (*VisitorReporter)(nil)
// VisitorReporter is a UnitReporter that will call the provided callbacks for
// finding units and reporting errors. VisitErr is optional; if unset it will
// log the error.
type VisitorReporter struct {
VisitUnit func(context.Context, SourceUnit) error
VisitErr func(context.Context, error) error