encodecounter
原文:https://pkg.go.dev/internal/coverage/encodecounter@go1.23.0
常量
This section is empty.
变量
This section is empty.
函数
This section is empty.
类型
type CounterVisitor
|
|
CounterVisitor describes a helper object used during counter file writing; when writing counter data files, clients pass a CounterVisitor to the write/emit routines. The writers will then first invoke the visitor’s NumFuncs() method to find out how many function’s worth of data to write, then it will invoke VisitFuncs. The expectation is that the VisitFuncs method will then invoke the callback “f” with data for each function to emit to the file.
type CounterVisitorFn
|
|
CounterVisitorFn describes a callback function invoked when writing coverage counter data.
type CoverageDataWriter
|
|
func NewCoverageDataWriter
|
|
(*CoverageDataWriter) AppendSegment
|
|
AppendSegment appends a new segment to a counter data, with a new args section followed by a payload of counter data clauses.
(*CoverageDataWriter) Write
|
|
Write writes the contents of the count-data file to the writer previously supplied to NewCoverageDataWriter. Returns an error if something went wrong somewhere with the write.