()
| 511 | } |
| 512 | |
| 513 | func (s *Scanner) next() int { |
| 514 | ch := s.peek() |
| 515 | if ch != eof { |
| 516 | s.pos++ |
| 517 | } |
| 518 | return ch |
| 519 | } |
| 520 | |
| 521 | func (s *Scanner) skipWhitespace(lval ScanSymType, allowComments bool) (newline, ok bool) { |
| 522 | newline = false |
no test coverage detected