(c: string)
| 224 | } |
| 225 | |
| 226 | function isIdentStart(c: string): boolean { |
| 227 | return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c === '_' |
| 228 | } |
| 229 | |
| 230 | function isIdentChar(c: string): boolean { |
| 231 | return isIdentStart(c) || (c >= '0' && c <= '9') |
no outgoing calls
no test coverage detected