feat: add the check_output_matches plugin #5

Merged
Emmanuel BENOîT merged 16 commits from tseeker/gomonop:20240720-line-matches into master 2024-07-20 22:57:10 +02:00
Showing only changes of commit 7c8c624b17 - Show all commits

View file

@ -70,12 +70,12 @@ func (r *Range) String() string {
type rangeParserState int type rangeParserState int
const ( const (
rpsInit = iota // Initial state rpsInit rangeParserState = iota // Initial state
rpsExpectStart // Expect the start of the range rpsExpectStart // Expect the start of the range
rpsInStart // Reading the start of the range rpsInStart // Reading the start of the range
rpsExpectColon // Expect the colon that separates the start and end rpsExpectColon // Expect the colon that separates the start and end
rpsExpectEnd // Expect the end of the range rpsExpectEnd // Expect the end of the range
rpsInEnd // Reading the end of the range rpsInEnd // Reading the end of the range
) )
// An error emitted by the range parser. // An error emitted by the range parser.