| 16 | } |
| 17 | |
| 18 | type tok_collection struct { |
| 19 | tokens []tok_pos_pair |
| 20 | fset *token.FileSet |
| 21 | } |
| 22 | |
| 23 | func (this *tok_collection) next(s *scanner.Scanner) bool { |
| 24 | pos, tok, _ := s.Scan() |
nothing calls this directly
no outgoing calls
no test coverage detected