(r rune)
| 126 | } |
| 127 | |
| 128 | func isIdentChar(r rune) bool { |
| 129 | return unicode.IsLetter(r) || unicode.IsDigit(r) |
| 130 | } |
| 131 | |
| 132 | func (p *Parser) skipWhitespace() { |
| 133 | for !p.eof() && unicode.IsSpace(p.peekChar()) { |
no outgoing calls
no test coverage detected