(ffl *FFLexer, targetTok FFTok)
| 54 | } |
| 55 | |
| 56 | func scanToTok(ffl *FFLexer, targetTok FFTok) error { |
| 57 | _, err := scanToTokCount(ffl, targetTok) |
| 58 | return err |
| 59 | } |
| 60 | |
| 61 | func scanToTokCount(ffl *FFLexer, targetTok FFTok) (int, error) { |
| 62 | c := 0 |
no test coverage detected
searching dependent graphs…