()
| 93 | } |
| 94 | |
| 95 | func (l *methodLexer) skip() { |
| 96 | if cur := l.cur + 1; cur < len(l.words) { |
| 97 | l.cur = cur |
| 98 | } else { |
| 99 | l.cur = len(l.words) - 1 |
| 100 | } |
| 101 | } |
| 102 | |
| 103 | func (l *methodLexer) peek(idx int) string { |
| 104 | if idx < len(l.words) { |
no outgoing calls
no test coverage detected