(c byte)
| 57 | } |
| 58 | |
| 59 | func hexDigit(c byte) bool { |
| 60 | return '0' <= c && c <= '9' || 'a' <= c && c <= 'f' || 'A' <= c && c <= 'F' |
| 61 | } |
| 62 | |
| 63 | // nameStart returns whether c can be the first character of an identifier |
| 64 | // (not counting an initial hyphen, or an escape sequence). |
no outgoing calls
no test coverage detected
searching dependent graphs…