()
| 405 | } |
| 406 | |
| 407 | func (s *scanner) next() int { |
| 408 | ch := s.peek() |
| 409 | if ch != eof { |
| 410 | s.pos++ |
| 411 | } |
| 412 | return ch |
| 413 | } |
| 414 | |
| 415 | func (s *scanner) skipWhitespace(lval *sqlSymType, allowComments bool) (newline, ok bool) { |
| 416 | newline = false |
no test coverage detected