eof returns true if the parser consumed all available characters.
()
| 59 | |
| 60 | // eof returns true if the parser consumed all available characters. |
| 61 | func (s *scanner) eof() bool { |
| 62 | return s.off == len(s.data) |
| 63 | } |
no outgoing calls
no test coverage detected