(ch rune)
| 188 | } |
| 189 | |
| 190 | func lower(ch rune) rune { return ('a' - 'A') | ch } // returns lower-case ch iff ch is ASCII letter |
| 191 | |
| 192 | func (l *Lexer) scanDigits(ch rune, base, n int) rune { |
| 193 | for n > 0 && digitVal(ch) < base { |
no outgoing calls
no test coverage detected
searching dependent graphs…